Skip to content

Instantly share code, notes, and snippets.

@gyorb
Last active April 5, 2019 18:19
Show Gist options
  • Select an option

  • Save gyorb/dc9663eaadf0fc960a753e15a83b5179 to your computer and use it in GitHub Desktop.

Select an option

Save gyorb/dc9663eaadf0fc960a753e15a83b5179 to your computer and use it in GitHub Desktop.
keybindings.json
[
//{"key": "ctrl+t", "command": "workbench.action.terminal.focus", "when": "!terminalFocus"},
//{"key": "ctrl+t", "command": "workbench.action.terminal.toggleTerminal", "when": "terminalFocus"},
{"key": "ctrl+t", "command": "workbench.action.terminal.toggleTerminal"},
//{"key": "ctrl+x", "command": "workbench.action.evenEditorWidths"},
//{"key": "ctrl+x", "command": "workbench.action.maximizeEditor"},
//{"key": "ctrl+x", "command": "workbench.action.nextPanelView"},
//{"key": "ctrl+x", "command": "workbench.action.openView"},
//{"key": "ctrl+x", "command": "workbench.action.quickOpenView"},
{"key": "ctrl+x", "command": "workbench.action.togglePanel"},
//{"key": "ctrl+x", "command": "workbench.action.evenEditorWidths"},
{"key": "ctrl+p", "command": "workbench.actions.view.problems", "when": "terminalFocus"},
{"key": "ctrl+p", "command": "workbench.actions.view.problems"},
{"key": "ctrl+e", "command": "workbench.view.explorer"},
{"key": "ctrl+g", "command": "workbench.view.scm"},
{"key": "ctrl+d", "command": "workbench.view.debug"},
{"key": "ctrl+z", "command": "workbench.action.toggleMaximizedPanel"},
{"key": "ctrl+a", "command": "workbench.action.toggleActivityBarVisibility"},
{"key": "ctrl+b", "command": "workbench.action.toggleSidebarVisibility" },
//{"key": "ctrl+j", "command": "list.focusDown", "when": "listFocus && !inputFocus" },
//{"key": "ctrl+k", "command": "list.focusUp", "when": "listFocus && !inputFocus" },
{"key": "ctrl+shift+pageup", "command": "workbench.action.zoomIn"},
{"key": "ctrl+shift+pagedown", "command": "workbench.action.zoomOut"},
// {"key": "ctrl+r", "command": "workbench.files.action.refreshFilesExplorer" }
// { "key": "enter", "command": "list.select", "when": "explorerViewletVisible && filesExplorerFocus" },
// { "key": "j", "command": "list.focusDown", "when": "explorerViewletVisible && filesExplorerFocus" },
// { "key": "k", "command": "list.focusUp", "when": "explorerViewletVisible && filesExplorerFocus" },
// { "key": "o", "command": "list.toggleExpand", "when": "listFocus" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment