-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeybinding.json
More file actions
65 lines (64 loc) · 1.82 KB
/
Copy pathkeybinding.json
File metadata and controls
65 lines (64 loc) · 1.82 KB
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
// 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": ", tab",
"command": "workbench.action.showAllEditors",
"when": "neovim.mode != insert && (editorTextFocus || !inputFocus)"
},
{
"key" : "ctrl+[",
"command": "workbench.action.previousEditor",
"when": "neovim.mode != insert && (editorTextFocus || !inputFocus)"
},
{
"key" : "ctrl+]",
"command": "workbench.action.nextEditor",
"when": "neovim.mode != insert && (editorTextFocus || !inputFocus)"
},
{
"key": "ctrl+tab",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
},
{
"key": "ctrl+d",
"command": "workbench.action.closeActiveEditor",
"when": "neovim.mode != insert && (editorTextFocus || !inputFocus)"
},
{
"key": ", f f",
"command": "workbench.action.quickOpen",
"when": "neovim.mode != insert && (editorTextFocus || !inputFocus)"
},
{
"key": ", f w",
"command": "workbench.action.findInFiles",
"when": "neovim.mode != insert && (editorTextFocus || !inputFocus)"
},
{
"key": ", e",
"command": "workbench.action.toggleSidebarVisibility",
"when": "neovim.mode != insert && (editorTextFocus || !inputFocus)"
},
]