tmux: перенос конфига (бинды, мышь, темы, автосохранение) + README

This commit is contained in:
Marat Kharitonov
2026-08-06 23:26:42 +03:00
commit 3cf28aa7a4
3 changed files with 212 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
// Поместите настраиваемые сочетания клавиш в этот файл, чтобы переопределить сочетания клавиш по умолчанию.
[
{
"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"
}
]