🔧 More configuring vscode

This commit is contained in:
z3rOR0ne 2024-03-17 21:49:36 -07:00
parent 65404da6be
commit fc36d9953b
2 changed files with 31 additions and 17 deletions

View file

@ -25,34 +25,39 @@
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+t",
"command": "workbench.action.files.newUntitledFile"
"key": "ctrl+t",
"command": "workbench.action.files.newUntitledFile"
},
{
"key": "ctrl+h",
"command": "workbench.action.focusPreviousGroup",
"when": "activeEditorGroupIndex != 0"
"key": "ctrl+h",
"command": "workbench.action.focusPreviousGroup",
"when": "activeEditorGroupIndex != 0"
},
{
"key": "ctrl+l",
"command": "workbench.action.focusNextGroup",
"when": "activeEditorGroupIndex != editorGroupCount - 1"
"key": "ctrl+l",
"command": "workbench.action.focusNextGroup",
"when": "activeEditorGroupIndex != editorGroupCount - 1"
},
{
"key": "space '",
"command": "workbench.action.toggleSidebarVisibility",
"when": "sideBarFocus && activeViewlet != workbench.view.extensions && activeViewlet != workbench.view.search && activeViewlet != workbench.view.scm"
"key": "space '",
"command": "workbench.action.toggleSidebarVisibility",
"when": "sideBarFocus && activeViewlet != workbench.view.extensions && activeViewlet != workbench.view.search && activeViewlet != workbench.view.scm"
},
{
"key": "ctrl+p",
"command": "workbench.action.quickOpen"
"key": "ctrl+p",
"command": "workbench.action.quickOpen"
},
{
"key": "alt+enter",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+enter",
"command": "workbench.action.terminal.new"
}
"key": "ctrl+enter",
"command": "workbench.action.terminal.new"
},
{
"key": "ctrl+down",
"command": "workbench.action.terminal.focusNext",
"when": "!terminalFocus"
},
]