--- title: VSCode tags: setting --- ```json= // Place your key bindings in this file to overwrite the defaults [ { "key": "ctrl+`", "command": "workbench.action.terminal.focus", "when": "!terminalFocus" }, { "key": "ctrl+`", "command": "workbench.action.focusActiveEditorGroup", "when": "terminalFocus" }, { "key": "ctrl+shift+j", "command": "workbench.action.terminal.focusNext" }, { "key": "ctrl+shift+f", "command": "workbench.action.terminal.focusPrevious" }, { "key": "ctrl+shift+r", "command": "workbench.action.terminal.runSelectedText" }, { "key": "shift+alt+t", "command": "trailing-spaces.deleteTrailingSpaces" } ] ```