Skip to content

Instantly share code, notes, and snippets.

@0x1628
Last active August 9, 2019 16:49
Show Gist options
  • Save 0x1628/95ab9dc8ad3c3cdb81abee85b79839fe to your computer and use it in GitHub Desktop.
Save 0x1628/95ab9dc8ad3c3cdb81abee85b79839fe to your computer and use it in GitHub Desktop.
vscode
[
{
"key": "ctrl+alt+k",
"command": "editor.debug.action.showDebugHover",
"when": "editorTextFocus && inDebugMode"
},
{
"key": "ctrl+k ctrl+i",
"command": "-editor.debug.action.showDebugHover",
"when": "editorTextFocus && inDebugMode"
},
{
"key": "ctrl+alt+k",
"command": "editor.action.showHover",
"when": "editorTextFocus"
},
{
"key": "ctrl+k ctrl+i",
"command": "-editor.action.showHover",
"when": "editorTextFocus"
},
{
"key": "ctrl+k",
"command": "-workbench.action.terminal.clear",
"when": "terminalFocus",
},
{
"key": "ctrl+x ctrl+n",
"command": "workbench.action.files.newUntitledFile"
},
{
"key": "ctrl+n",
"command": "-workbench.action.files.newUntitledFile"
},
{
"key": "ctrl+alt+o",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
},
{
"key": "ctrl+alt+o",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+alt+b",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+b",
"command": "-workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+alt+escape",
"command": "workbench.action.terminal.new"
},
{
"key": "ctrl+shift+oem_3",
"command": "-workbench.action.terminal.new"
},
{
"key": "ctrl+shift+space",
"command": "emacs.enterMarkMode",
"when": "editorTextFocus"
},
{
"key": "ctrl+space",
"command": "-emacs.enterMarkMode",
"when": "editorTextFocus"
}
]
{
"editor.tabSize": 2,
"files.associations": {
"*.wxml": "html",
"*.wxss": "less",
"*.css": "less"
},
"window.zoomLevel": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment