tmux: перенос конфига (бинды, мышь, темы, автосохранение) + README
This commit is contained in:
Executable
+49
@@ -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"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user