chore: initial commit
This commit is contained in:
@@ -0,0 +1,101 @@
|
||||
// Place your key bindings in this file to override the defaults
|
||||
[
|
||||
{
|
||||
"key": "ctrl+0",
|
||||
"command": "workbench.action.focusActiveEditorGroup",
|
||||
"when": "sideBarFocus"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+n",
|
||||
"command": "explorer.newFile",
|
||||
"when": "explorerViewletFocus"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+n",
|
||||
"command": "explorer.newFolder",
|
||||
"when": "explorerViewletFocus"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+n",
|
||||
"command": "workbench.action.newWindow",
|
||||
"when": "!explorerViewletFocus"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+t",
|
||||
"command": "workbench.view.testing.focus",
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+g",
|
||||
"command": "workbench.view.scm",
|
||||
},
|
||||
{
|
||||
"key": "ctrl+k ctrl+c",
|
||||
"command": "workbench.action.closeOtherEditors"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+e",
|
||||
"command": "workbench.view.explorer"
|
||||
},
|
||||
{
|
||||
"key": "r",
|
||||
"command": "renameFile",
|
||||
"when": "explorerViewletFocus && !inputFocus && !editorHasSelection"
|
||||
},
|
||||
{
|
||||
"key": "d",
|
||||
"command": "deleteFile",
|
||||
"when": "explorerViewletFocus && !inputFocus && !editorHasSelection"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+`",
|
||||
"command": "workbench.action.createTerminalEditor",
|
||||
"when": "terminalProcessSupported && !terminal.active"
|
||||
},
|
||||
{
|
||||
"key": "a",
|
||||
"command": "explorer.newFile",
|
||||
"when": "explorerViewletFocus && !inputFocus && !editorHasSelection"
|
||||
},
|
||||
{
|
||||
"key": "j",
|
||||
"command": "workbench.action.debug.stepOver",
|
||||
"when": "debugState == 'stopped'"
|
||||
},
|
||||
{
|
||||
"key": "f10",
|
||||
"command": "-workbench.action.debug.stepOver",
|
||||
"when": "debugState == 'stopped'"
|
||||
},
|
||||
{
|
||||
"key": "l",
|
||||
"command": "workbench.action.debug.stepInto",
|
||||
"when": "debugState != 'inactive'"
|
||||
},
|
||||
{
|
||||
"key": "f11",
|
||||
"command": "-workbench.action.debug.stepInto",
|
||||
"when": "debugState != 'inactive'"
|
||||
},
|
||||
{
|
||||
"key": "c",
|
||||
"command": "workbench.action.debug.continue",
|
||||
"when": "debugState == 'stopped'"
|
||||
},
|
||||
{
|
||||
"key": "f5",
|
||||
"command": "-workbench.action.debug.continue",
|
||||
"when": "debugState == 'stopped'"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+w",
|
||||
"command": "-workbench.action.closeActiveEditor"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+shift+w",
|
||||
"command": "workbench.action.closeActiveEditor"
|
||||
},
|
||||
{
|
||||
"key": "ctrl+f4",
|
||||
"command": "-workbench.action.closeActiveEditor"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user