-
Notifications
You must be signed in to change notification settings - Fork 1
/
keybindings.json
33 lines (33 loc) · 910 Bytes
/
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
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+l down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+l up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+=",
"command": "extension.align",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+a",
"command": "-extension.align",
"when": "editorTextFocus"
}
]