可以看到,默认的配置是使用空格激活;但是我们配置的 vim 的 <Leader> 也是space 键(如果你和我一样的配置,如果不是则无需接下来的改键),这时候我们就要重新配置激活按键,而我改成了 space + ;,这样的按起来也比较顺手。如下: // keybinds.jsonc { "key": "space+;", "command": "vspacecode.space"...
If you prefer this project's first approach using settings without an extension, see thevscode-vimbranch. Installation and documentation You can find installation instructions and documentation in theVSpaceCode website. Release Notes SeeCHANGELOG.md ...
{ "key": "=", "name": "Yank a line", "type": "commands", "commands": ["editor.action.formatDocument", "vim.remap"], "args": [ null, { "after": ["y", "y"]} ] }, Changed q is no longer a reserved key to exit menu Move the quick open in <spc> f f to <spc> ...
"vim.normalModeKeyBindingsNonRecursive": [ { "before": ["<Leader>", ";"], "commands": ["vspacecode.space"] } ] 如果我们只在 settings.json 里配置,那么如果我们离开代码编辑区域的话,去到了资源管理器和终端就不起效了,所以我们需要再配置 keybindings.json keybindings.json {"key":"space","c...