Last active
July 27, 2023 13:21
-
-
Save theteachr/3f495b57f12c32f4b318b6367b214255 to your computer and use it in GitHub Desktop.
VSCode Vim Bindings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [ | |
"<leader>", | |
"s" | |
], | |
"commands": [ | |
"workbench.action.gotoSymbol" | |
], | |
"silent": true | |
}, | |
{ | |
"before": [ | |
"<leader>", | |
"S" | |
], | |
"commands": [ | |
"workbench.action.showAllSymbols" | |
], | |
"silent": true | |
}, | |
{ | |
"before": [ | |
"]", | |
"d" | |
], | |
"commands": [ | |
"editor.action.marker.nextInFiles" | |
], | |
"silent": true | |
}, | |
{ | |
"before": [ | |
"[", | |
"d" | |
], | |
"commands": [ | |
"editor.action.marker.prevInFiles" | |
], | |
"silent": true | |
}, | |
{ | |
"before": [ | |
"K" | |
], | |
"commands": [ | |
"lineBreakInsert" | |
], | |
"silent": true | |
} | |
], | |
"vim.leader": " ", | |
"editor.renderFinalNewline": "off", | |
"files.insertFinalNewline": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment