2022-03-19 11:03:31 +00:00
|
|
|
// Place your key bindings in this file to override the defaults
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"key": "ctrl+h",
|
|
|
|
"command": "workbench.action.navigateLeft"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ctrl+l",
|
|
|
|
"command": "workbench.action.navigateRight"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ctrl+k",
|
|
|
|
"command": "workbench.action.navigateUp"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ctrl+j",
|
|
|
|
"command": "workbench.action.navigateDown"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ctrl+m",
|
|
|
|
"command": "workbench.action.previousEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ctrl+n",
|
|
|
|
"command": "workbench.action.nextEditor"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ctrl+f",
|
|
|
|
"command": "actions.find"
|
|
|
|
},
|
|
|
|
{
|
2022-08-30 09:16:26 +01:00
|
|
|
"key": "ctrl+left",
|
2022-03-19 11:03:31 +00:00
|
|
|
"command": "workbench.action.toggleSidebarVisibility"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ctrl+b",
|
|
|
|
"command": "-workbench.action.toggleSidebarVisibility"
|
2022-08-30 09:16:26 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ctrl+shift+g",
|
|
|
|
"command": "workbench.view.scm",
|
|
|
|
"when": "workbench.scm.active"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ctrl+shift+g",
|
|
|
|
"command": "-workbench.view.scm",
|
|
|
|
"when": "workbench.scm.active"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ctrl+right",
|
|
|
|
"command": "workbench.action.toggleAuxiliaryBar"
|
2022-11-07 12:37:39 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "tab",
|
|
|
|
"command": "selectNextSuggestion",
|
|
|
|
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "down",
|
|
|
|
"command": "-selectNextSuggestion",
|
|
|
|
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ctrl+tab",
|
|
|
|
"command": "selectPrevSuggestion",
|
|
|
|
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "up",
|
|
|
|
"command": "-selectPrevSuggestion",
|
|
|
|
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
|
2022-03-19 11:03:31 +00:00
|
|
|
}
|
|
|
|
]
|