Vim for Visual Studio Code
Go to file
Sean Kelly 2c81aa4f7c Reselect visual implemented (gv) (#1141)
* fixes #986

* update roadmap for gv
2016-12-08 23:36:47 -08:00
.github Update PULL_REQUEST_TEMPLATE.md 2016-11-19 12:26:20 -08:00
.vscode Multi-line comments work 2016-12-03 19:50:42 -05:00
images Update Readme. Attempt to make it more succint and add point about useCtrlKeys option in an attempt to avoid those questions on our Slack. (#1012) 2016-10-28 12:14:08 -07:00
src Reselect visual implemented (gv) (#1141) 2016-12-08 23:36:47 -08:00
test Reselect visual implemented (gv) (#1141) 2016-12-08 23:36:47 -08:00
typings/vscode Clean up typings 2016-10-02 01:34:11 -07:00
.gitignore Clean up typings 2016-10-02 01:34:11 -07:00
.travis.yml Mac builds on Travis take hours. Likelihood of x-plat issue is minimal. Removing mac build 2016-10-19 14:44:08 -07:00
.vscodeignore put the markdown files back in the vsix package 2016-10-18 11:42:56 -07:00
extension.ts Fix some minor perf issues. 2016-12-05 17:29:51 -05:00
gulpfile.js Remove fix-whitespace gulp command. Replaced by .vscode/settings.json (#999) 2016-10-27 00:54:39 -07:00
LICENSE Initial commit 2015-11-12 01:02:24 -08:00
package.json 0.4.9 2016-12-05 18:44:52 -05:00
README.md Updated useCtrlKeys default value (#1126) 2016-12-07 02:45:13 -05:00
ROADMAP.md Reselect visual implemented (gv) (#1141) 2016-12-08 23:36:47 -08:00
STYLE.md Fix Docs (#807) 2016-09-27 23:16:48 -07:00
tsconfig.json Refactor code with enumerator 2016-08-12 21:28:05 +08:00
tsd.json Stop using jsdiff. Use diff-match-patch. 2016-08-14 12:03:45 -07:00
tslint.json Fix all tslint issues 2016-09-15 16:58:01 -07:00
typings.json Clean up typings 2016-10-02 01:34:11 -07:00

Vim Version Build Status Slack Status

VSCodeVim is a Visual Studio Code extension that enables Vim keybindings, including:

  • Modes: normal, insert, command, visual, visual line, visual block (with useCtrlKeys, see below)
  • Command combinations (c3w, daw, 2dd, etc)
  • Highly versatile command remapping (jj to esc, : to command panel, etc.)
  • Incremental search with / and ?
  • Marks
  • Vim settings (like .vimrc)
  • Multi-cursor support. Allows multiple simultaneous cursors to receive Vim commands (e.g. allows / search, each cursor has independent clipboards, etc.).
  • The EasyMotion plugin!
  • And much more! Refer to the roadmap or everything we support.

Please report missing features/bugs on GitHub, which will help us get to them faster.

Ask us questions, talk about contributing, or just say hi on Slack!

Supported Options

The following is a subset of the supported configurations; the full list is described in the Contributions tab for this extension, or in our package.json:

useCtrlKeys

  • Enable Vim ctrl keys overriding common VS Code operations (eg. copy, paste, find, etc). Setting this option to true will enable:

    • ctrl+c, ctrl+[ => <Esc>
    • ctrl+f => Full Page Forward
    • ctrl+d => Half Page Back
    • ctrl+b => Half Page Forward
    • ctrl+v => Visual Block Mode
    • etc.
  • Type: Boolean (Default: true)

  • Example:

    "vim.useCtrlKeys": true
    

insertModeKeyBindings/otherModesKeyBindings

  • Keybinding overrides to use for insert and other (non-insert) modes.

Bind jj to <Esc> in insert mode:

  "vim.insertModeKeyBindings": [
       {
           "before": ["j", "j"],
           "after": ["<Esc>"]
       }
  ]

Bind : to show the command palette:

"vim.otherModesKeyBindingsNonRecursive": [
   {
       "before": [":"],
       "after": [],
       "commands": [
           {
               "command": "workbench.action.showCommands",
               "args": []
           }
       ]
   }
]

Bind ZZ to save and close the current file:

    "vim.otherModesKeyBindingsNonRecursive": [
        {
            "before": ["Z", "Z"],
            "after": [],
            "commands": [
                {
                    "command": "workbench.action.files.save",
                    "args": []
                },
                {
                    "command": "workbench.action.closeActiveEditor",
                    "args": []
                }
            ]
        }
    ]

insertModeKeyBindingsNonRecursive/otherModesKeyBindingsNonRecursive

  • Non-recursive keybinding overrides to use for insert and other (non-insert) modes (similar to :noremap)

  • Example: Bind j to gj. Notice that if you attempted this binding normally, the j in gj would be expanded into gj, on and on forever. Stop this recursive expansion using insertModeKeyBindingsNonRecursive and/or otherModesKeyBindingNonRecursive.

    "vim.otherModesKeyBindingsNonRecursive": [
    {
        "before": ["j"],
        "after": ["g", "j"]
    }]
    

startInInsertMode

  • Have VSCodeVim start in Insert Mode rather than Normal Mode.
  • We would be remiss in our duties as Vim users not to say that you should really be staying in Normal mode as much as you can, but hey, who are we to stop you?

useSystemClipboard

  • Enable yanking to the system clipboard by default
  • Type: Boolean (Default: false)
  • Note: Linux users must have xclip installed

searchHighlightColor

  • Set the color of search highlights.
  • Type: Color String (Default: rgba(150, 150, 150, 0.3))

useSolidBlockCursor

  • Use a non-blinking block cursor
  • Type: Boolean (Default: false)

Vim settings we support

ignorecase

  • Ignore case in search patterns
  • Type: Boolean (Default: true)

smartcase

  • Override the 'ignorecase' option if the search pattern contains upper case characters
  • Type: Boolean (Default: true)

hlsearch

  • When there is a previous search pattern, highlight all its matches
  • Type: Boolean (Default: false)

incsearch

  • Show the next search match while you're searching.
  • Type: Boolean (Default: true)

autoindent

  • Copy indent from current line when starting a new line
  • Type: Boolean (Default: true)

timeout

  • Timeout in milliseconds for remapped commands
  • Type: Number (Default: 1000)

showcmd

  • Show the text of any command you are in the middle of writing.
  • Type: Boolean (Default: true)

textwidth

  • Width to word-wrap to when using gq.
  • Type: number (Default: 80)

leader

  • What key should <leader> map to in key remappings?
  • Type: string (Default: \)

Configure

Vim options are loaded in the following sequence:

  1. :set {option}
  2. vim.{option} from user/workspace settings.
  3. VSCode configuration
  4. VSCodeVim default values

Note: changes to the user/workspace settings require a restart of VS Code to take effect.

Multi-Cursor Mode

Multi-Cursor mode is currently in beta. Please report things you expected to work but didn't to our feedback thread.

Getting into multi-cursor mode

You can enter multi-cursor mode by:

  • Pressing cmd-d on OSX.
  • Running "Add Cursor Above/Below" or the shortcut on any platform.
  • Pressing gc, a new shortcut we added which is equivalent to cmd-d on OSX or ctrl-d on Windows. (It adds another cursor at the next word that matches the word the cursor is currently on.)

Doing stuff

Now that you have multiple cursors, you should be able to use Vim commands as you see fit. Most of them should work. There is a list of things I know of which don't here. If you find yourself wanting one of these, please add it to our feedback thread.

Each cursor has its own clipboard.

Pressing Escape in Multi-Cursor Visual Mode will bring you to Multi-Cursor Normal mode. Pressing it again will return you to Normal mode.

F.A.Q.

j, k and others don't repeat when I hold them down.

On OS X, open Terminal and run the following command:

defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false         // For VS Code
defaults write com.microsoft.VSCodeInsiders ApplePressAndHoldEnabled -bool false // For VS Code Insider

Help! None of the vim ctrl (e.g. ctrl+f, ctrl+v) commands work

Configure the useCtrlKeys option (see configurations#useCtrlKeys) to true.

How to use easymotion

To activate easymotion, you need to make sure that easymotion is set to true in settings.json. Now that easymotion is active, you can initiate motions using the following commands. Once you initiate the motion, text decorators will be displayed and you can press the keys displayed to jump to that position. leader is configurable and is \ by default.

Motion Command Description
<leader> <leader> s <char> Search character
<leader> <leader> f <char> Find character forwards
<leader> <leader> F <char> Find character backwards
<leader> <leader> t <char> Til character forwards
<leader> <leader> T <char> Til character backwards
<leader> <leader> w Start of word forwards
<leader> <leader> e End of word forwards
<leader> <leader> g e End of word backwards
<leader> <leader> b Start of word backwards

Contributing

This project is maintained by a group of awesome people and contributions are extremely welcome ❤️. For a quick tutorial on how you can help, see our contributing guide.

Special props to Kevin Coleman, who created our awesome logo!

Release Notes

Our recent releases and update notes are available here.