Home > Mobile >  Visual Studio Code: toggle between write/insert mode
Visual Studio Code: toggle between write/insert mode

Time:11-19

How can I toggle between write/insert mode.

  • Insert mode: push characters away.
  • Write mode: override existing characters.

CodePudding user response:

There is an extension called Overtype that achieves this. It works simply by pressing the Insert key just like many other applications. You can also toggle the modes using Ctrl Shift I.

  • Related