-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode
66 lines (66 loc) · 1.75 KB
/
vscode
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Place your key bindings in this file to override the defaultsauto[]
// https://stackoverflow.com/questions/42796887/switch-focus-between-editor-and-integrated-terminal
// Preferences: Open Keyboard Shortcuts (JSON)
[
{
"key": "ctrl+c",
"command": "-extension.vim_ctrl+c",
"when": "editorTextFocus && vim.active && vim.overrideCtrlC && vim.use<C-c> && !inDebugRepl"
},
{
"key": "ctrl+a",
"command": "-extension.vim_ctrl+a",
"when": "editorTextFocus && vim.active && vim.use<C-a> && !inDebugRepl"
},
{
"key": "ctrl+v",
"command": "-extension.vim_ctrl+v",
"when": "editorTextFocus && vim.active && vim.use<C-v> && !inDebugRepl"
},
{
"key": "ctrl+z",
"command": "-extension.vim_ctrl+z",
"when": "editorTextFocus && vim.active && vim.use<C-z> && !inDebugRepl"
},
{
"key": "ctrl+1",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+1",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+k",
"command": "vim.remap",
"when": "inputFocus",
"args": {
"after": ["5", "k"]
}
},
{
"key": "ctrl+j",
"command": "vim.remap",
"when": "inputFocus",
"args": {
"after": ["5", "j"]
}
},
{
"key": "[",
"command": "vim.remap",
"when": "inputFocus && vim.mode == 'Normal'",
"args": {
"after": ["o", "<ESC>"]
}
},
{
"key": "]",
"command": "vim.remap",
"when": "inputFocus && vim.mode == 'Normal'",
"args": {
"after": ["O", "<ESC>"]
}
},
]