vscode-vim icon indicating copy to clipboard operation
vscode-vim copied to clipboard

How about adding a "w" command?

Open Magicloud opened this issue 7 years ago • 1 comments

Since ":" opens command palette, and "save" is not even the first command, how about adding a "w" command to save file? So ":w" behavior could be the same as VIM.

Magicloud avatar Jan 07 '19 10:01 Magicloud

Since ":" opens command palette, and "save" is not even the first command, how about adding a "w" command to save file? So ":w" behavior could be the same as VIM.

[
  {
    "key": "shift+; w",
    "command": "workbench.action.files.save"
  },
  {
    "key": "ctrl+s",
    "command": "workbench.action.files.save"
  }
]

I ended up using key binding.

dattl avatar Sep 05 '19 08:09 dattl