49 lines
1.5 KiB
JSON
Executable File
49 lines
1.5 KiB
JSON
Executable File
// Поместите настраиваемые сочетания клавиш в этот файл, чтобы переопределить сочетания клавиш по умолчанию.
|
|
[
|
|
{
|
|
"key": "ctrl+shift+p",
|
|
"command": "-workbench.action.showCommands"
|
|
},
|
|
{
|
|
"key": "ctrl+p",
|
|
"command": "-workbench.action.quickOpen"
|
|
},
|
|
{
|
|
"key": "ctrl+p",
|
|
"command": "-workbench.action.quickOpenNavigateNextInFilePicker",
|
|
"when": "inFilesPicker && inQuickOpen"
|
|
},
|
|
{
|
|
"key": "ctrl+shift+p",
|
|
"command": "-workbench.action.quickOpenNavigatePreviousInFilePicker",
|
|
"when": "inFilesPicker && inQuickOpen"
|
|
},
|
|
{
|
|
"key": "ctrl+m",
|
|
"command": "-editor.action.toggleTabFocusMode"
|
|
},
|
|
{
|
|
"key": "alt+left",
|
|
"command": "workbench.action.terminal.sendSequence",
|
|
"args": { "text": "\u001b[1;3D" },
|
|
"when": "terminalFocus"
|
|
},
|
|
{
|
|
"key": "alt+right",
|
|
"command": "workbench.action.terminal.sendSequence",
|
|
"args": { "text": "\u001b[1;3C" },
|
|
"when": "terminalFocus"
|
|
},
|
|
{
|
|
"key": "alt+up",
|
|
"command": "workbench.action.terminal.sendSequence",
|
|
"args": { "text": "\u001b[1;3A" },
|
|
"when": "terminalFocus"
|
|
},
|
|
{
|
|
"key": "alt+down",
|
|
"command": "workbench.action.terminal.sendSequence",
|
|
"args": { "text": "\u001b[1;3B" },
|
|
"when": "terminalFocus"
|
|
}
|
|
] |