-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkeybindings.json
32 lines (32 loc) · 903 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
[
{
"key": "ctrl+shift+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "cmd+left",
"command": "-cursorWordLeft",
"when": "textInputFocus && !accessibilityModeEnabled"
},
{
"key": "cmd+right",
"command": "-cursorWordEndRight",
"when": "textInputFocus && !accessibilityModeEnabled"
},
{
"key": "shift+cmd+right",
"command": "cursorWordEndRightSelect",
"when": "textInputFocus && !accessibilityModeEnabled"
},
{
"key": "shift+cmd+left",
"command": "cursorWordLeftSelect",
"when": "textInputFocus && !accessibilityModeEnabled"
}
]