1
0
Fork 0

Move keybindings to Normal mode

main
Ambrose Chua 2023-02-06 16:06:56 +08:00
parent ef36c989d3
commit 097f57d3ca
2 changed files with 17 additions and 9 deletions

View File

@ -1,8 +1,2 @@
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "shift+k",
"command": "editor.action.showHover",
"when": "editorTextFocus"
}
]
[]

View File

@ -1,5 +1,19 @@
{
"workbench.colorTheme": "Solarized Dark",
"workbench.startupEditor": "none",
"files.autoSave": "afterDelay",
"workbench.startupEditor": "none"
}
"vim.normalModeKeyBindings": [
{
"before": ["K"],
"commands": ["editor.action.showHover"],
},
{
"before": ["<space>", "r", "f"],
"commands": ["fileutils.renameFile"],
},
{
"before": ["<space>", "f"],
"commands": ["editor.action.formatDocument"],
},
],
}