-
Notifications
You must be signed in to change notification settings - Fork 2
/
vscode_keybindings.json
97 lines (97 loc) · 2.23 KB
/
vscode_keybindings.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[{
"key": "shift+f1",
"command": "workbench.action.focusActiveEditorGroup"
}, {
"key": "f2",
"command": "workbench.action.toggleSidebarVisibility"
}, {
"key": "shift+f2",
"command": "workbench.action.focusSideBar"
}, {
"key": "f3",
"when": "!terminalViewShowing",
"command": "workbench.action.terminal.toggleTerminal"
}, {
"key": "f3",
"when": "terminalViewShowing",
"command": "workbench.action.tasks.runTask",
"args": "task-close-terminal"
}, {
"key": "shift+f3",
"command": "workbench.action.terminal.focus"
}, {
"key": "f4",
"command": "workbench.action.toggleAuxiliaryBar"
}, {
"key": "shift+f4",
"command": "workbench.action.focusAuxiliaryBar"
}, {
"key": "ctrl+k o",
"command": "workbench.action.addRootFolder"
}, {
"key": "ctrl+k e",
"command": "workbench.view.explorer"
}, {
"key": "ctrl+k g",
"command": "workbench.view.scm"
}, {
"key": "ctrl+k d",
"command": "workbench.view.debug"
}, {
"key": "ctrl+w",
"command": "workbench.action.closeActiveEditor"
}, {
"key": "ctrl+k b",
"command": "bookmarks.toggle",
"when": "editorTextFocus"
}, {
"key": "ctrl+;",
"command": "workbench.action.debug.stepOver",
"when": "inDebugMode"
}, {
"key": "ctrl+'",
"command": "workbench.action.debug.stepInto",
"when": "inDebugMode"
}, {
"key": "ctrl+shift+;",
"command": "workbench.action.debug.stepOut",
"when": "inDebugMode"
}, {
"key": "ctrl+\\",
"command": "workbench.action.debug.continue",
"when": "inDebugMode"
}, {
"key": "ctrl+k f",
"command": "workbench.action.findInFiles"
}, {
"key": "ctrl+k ctrl+k",
"command": "extension.xi.lookup"
}, {
"key": "cmd-f",
"command": "extension.vim_ctrl+f",
"when": "editorTextFocus && vim.active"
}, {
"key": "ctrl+]",
"command": "editor.action.openLink"
}, {
"key": "ctrl+[",
"command": "extension.goto-link-provider.back"
}, {
"key": "ctrl+8",
"command": "workbench.action.focusActiveEditorGroup"
}, {
"key": "ctrl+9",
"command": "workbench.action.toggleMaximizedPanel"
}, {
"key": "ctrl+k ctrl+o",
"command": "workbench.action.files.openFile"
}, {
"key": "ctrl+n",
"command": "explorer.newFile",
"when": "explorerViewletFocus"
},
{
"key": "shift+end",
"command": "cSpell.goToNextSpellingIssueAndSuggest"
}
]