-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathkeybindings.json
More file actions
33 lines (33 loc) · 712 Bytes
/
keybindings.json
File metadata and controls
33 lines (33 loc) · 712 Bytes
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
[
// Save all
{
"key": "ctrl+s",
"command": "workbench.action.files.saveAll"
},
// Stage current file
{
"key": "alt+s",
"command": "git.stage"
},
// Delete line
{
"key": "ctrl+l",
"command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
//Open Terminal of Type using Shell Launcher Extension
{
"key": "ctrl+shift+numpad_subtract",
"command": "shellLauncher.launch"
},
{
"key": "alt+k",
"command": "workbench.action.terminal.clear",
"when": "terminalFocus"
},
{
"key": "ctrl+enter",
"command": "workbench.action.terminal.runSelectedText",
"when": "editorTextFocus && editorHasSelection"
}
]