summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhaininhhoang <[email protected]>2020-11-20 12:46:12 +0700
committerGitHub <[email protected]>2020-11-20 00:46:12 -0500
commit44e877e72ba56b97a55d9df4bc85fd4019228f04 (patch)
treed4f7ebf38022c85cfe0fc36fd99c41aea42bcb11
parentb00f4c79ad2980c8066dd9e55f3f6f3dc8cdbce8 (diff)
Which-key works outside of insert mode in VSCode
-rw-r--r--utils/vscode_config/keybindings.json6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/vscode_config/keybindings.json b/utils/vscode_config/keybindings.json
index 2346439f..4caed2f1 100644
--- a/utils/vscode_config/keybindings.json
+++ b/utils/vscode_config/keybindings.json
@@ -219,4 +219,10 @@
"key": "ctrl+shift+t",
"command": "workbench.action.toggleMaximizedPanel"
}
+ {
+ "key": "space",
+ "command": "whichkey.show",
+ "when": "neovim.mode != 'insert'"
+ },
+
]