Find Selection
: Ctrl+D
Toggle Line Comment
: Ctrl+/
Split Down Editor:
: Ctrl+K Ctrl+\
Toggle Maximize Editor Group
: Ctrl+K Ctrl+M
{
"key": "alt+right",
"command": "cursorWordEndRight",
"when": "textInputFocus && !accessibilityModeEnabled"
}Here's a copy of my keybindings.json file for VS Code if you want to take a look at the rest of my keybindings:
{
key: "cmd+d",
command: "editor.action.deleteLines",
when: "editorTextFocus"
},
{
key: "cmd+t",
command: "workbench.action.quickOpen"
},
{
key: "cmd+[",
command: "workbench.action.navigateBack"
},
{
key: "cmd+]",
command: "workbench.action.navigateForward"
},
{
key: "shift+cmd+b",
command: "workbench.action.tasks.runTask"
},
{
key: "alt+`",
command: "workbench.action.terminal.focusPrevious"
},
{
key: "ctrl+cmd+a",
command: "-extension.align",
when: "editorTextFocus"
},
{
key: "cmd+\\",
command: "workbench.files.action.showActiveFileInExplorer"
},
{
key: "cmd+l",
command: "workbench.action.gotoLine"
}