Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 663 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 663 Bytes

VSCode Typer

Automated typing in Visual Studio Code. Great for live coding on stage =)

Features

It types out code!

Install

  1. $ npm install
  2. $ npm run package
  3. Install from VSIX

Usage

  1. Create a typer/steps.json file with more than one step:
[
    {
        "file": "test.js", // file  to change
        "content" : "test-2.js", // changed state
        "charsPerChange": 5 // characters per change
    }
]
  1. Use the VS Code Typer: Reset command via CMD+Shift+P
  2. Use CMD + -> / CMD + <- to navigate between steps

Check this Flutter repo for a usage example.