-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeybindings.json
More file actions
32 lines (32 loc) · 1.28 KB
/
keybindings.json
File metadata and controls
32 lines (32 loc) · 1.28 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
[
// Disable Control (⌃) + Option (⌥) + Return (↩), used for tiling (Window > Fill)
{
"key": "ctrl+alt+enter",
"command": "-workbench.action.chat.runInTerminal",
"when": "accessibleViewInCodeBlock && chatIsEnabled || chatIsEnabled && inChat"
},
// Disable Control (⌃) + Option (⌥) + Left Arrow (←), used for tiling (Window > Move & Resize > Left)
{
"key": "ctrl+alt+left",
"command": "-cursorWordPartLeft",
"when": "textInputFocus"
},
// Disable Control (⌃) + Option (⌥) + Right Arrow (→), used for tiling (Window > Move & Resize > Right)
{
"key": "ctrl+alt+right",
"command": "-cursorWordPartRight",
"when": "textInputFocus"
},
// Disable Control (⌃) + Option (⌥) + Right Arrow (→), used for tiling (Window > Move & Resize > Right)
{
"key": "ctrl+alt+right",
"command": "-quickInput.acceptInBackground",
"when": "cursorAtEndOfQuickInputBox && inQuickInput && quickInputType == 'quickPick' || inQuickInput && !inputFocus && quickInputType == 'quickPick'"
},
// Disable Control (⌃) + Option (⌥) + Delete (⌫), used for tiling (Window > Move & Resize > Return to Previous Size)
{
"key": "ctrl+alt+backspace",
"command": "-deleteWordPartLeft",
"when": "textInputFocus && !editorReadonly"
}
]