Vim emulation for Visual Studio Code.
- Install Visual Studio Code
- Open the command palette (
Ctrl-Shift-P
orCmd-Shift-P
) selectInstall Extension
and search for vim. Alternatively, runext install vim
-
Modes:
- Visual:
v
,V
- Command:
Esc
,Ctrl+[
- Insert:
i
,I
,a
,A
,o
,O
- Current Mode displayed in the status bar in the bottom left
- Visual:
-
Commands:
- Command Palette:
:
- Navigation:
h
,j
,k
,l
- Indentation:
>>
,<<
- Deletion:
dd
,dw
,db
- Editing:
u
,ctrl+r
- File Operations:
:q
,:w
- Command Palette:
In no particular order:
- Search:
/
- Support Macros
- Buffers
- Neovim Integration
Contributions are extremely welcomed! Take a look at Extension API on how to get started and our current issues to see what we are working on next.
- Install Visual Studio Code.
- Install Node.js with version > 4.0.0.
- Fork the repo.
npm install
gulp init
- This step will install type definitions (using tsd).
- Create a topic branch.
- Ensure tests pass:
gulp
: run tslint and tests- Launch tests within VS Code
- Squash your commits.
- Submit your PR.