Skip to content

Instantly share code, notes, and snippets.

@fredj
Last active November 21, 2018 16:19
Show Gist options
  • Save fredj/865dd7a41d3c67320ffd82f8f4f22a11 to your computer and use it in GitHub Desktop.
Save fredj/865dd7a41d3c67320ffd82f8f4f22a11 to your computer and use it in GitHub Desktop.
vscode
[
{
"key": "ctrl+x ctrl+f",
"command": "workbench.action.quickOpen"
},
{
"key": "ctrl+x ctrl+s",
"command": "workbench.action.files.save"
},
{
"key": "ctrl+x k",
"command": "workbench.action.closeActiveEditor"
},
{
"key": "ctrl+x 0",
"command": "workbench.action.closeEditorsInGroup"
},
{
"key": "ctrl+x 2",
"command": "workbench.action.splitEditorDown"
},
{
"key": "ctrl+x 3",
"command": "workbench.action.splitEditorRight"
},
{
"key": "ctrl+x o",
"command": "workbench.action.nextEditor"
},
{
"key": "escape g g",
"command": "workbench.action.gotoLine"
},
{
"key": "escape w",
"command": "editor.action.clipboardCopyAction",
"when": "textInputFocus"
},
{
"key": "ctrl+w",
"command": "editor.action.clipboardCutAction",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+y",
"command": "editor.action.clipboardPasteAction",
"when": "textInputFocus && !editorReadonly"
}
]
{
"workbench.colorTheme": "Atom One Light",
"window.titleBarStyle": "custom",
"githubPullRequests.hosts": [
{
"host": "https://github.com",
"username": "oauth",
"token": "system"
}
],
"workbench.statusBar.feedback.visible": false,
"editor.minimap.enabled": false,
"editor.renderControlCharacters": true,
"editor.renderIndentGuides": false,
"breadcrumbs.enabled": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.fontSize": 12,
"files.trimTrailingWhitespace": true,
"git.autofetch": true,
"javascript.implicitProjectConfig.checkJs": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment