-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeybindings.json
122 lines (121 loc) · 2.83 KB
/
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+k l",
"command": "settings.cycle.toggle_debug_mode_margin",
"when": "editorTextFocus"
},
{
"key": "alt+left",
"command": "editor.action.moveCarretLeftAction"
},
{
"key": "alt+right",
"command": "editor.action.moveCarretRightAction"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+/",
"command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+shift+k",
"command": "-editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+shift+k",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+shift+j",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+alt+m",
"command": "workbench.action.toggleMaximizedPanel",
"when": "terminalFocus"
},
{
"key": "ctrl+`",
"command": "-workbench.action.terminal.toggleTerminal",
"when": "!terminalFocus"
},
{
"key": "meta+k r",
"command": "better-phpunit.run",
"when": "editorLangId == 'php'"
},
{
"key": "ctrl+k a",
"command": "better-phpunit.run-previous",
"when": "editorLangId == 'php'"
},
{
"key": "meta+k meta+p",
"command": "-better-phpunit.run-previous",
"when": "editorLangId == 'php'"
},
{
"key": "ctrl+m ctrl+s",
"command": "md-shortcut.toggleStrikethrough"
},
{
"key": "alt+m",
"command": "editor.action.toggleMinimap"
},
{
"key": "meta+k meta+r",
"command": "-better-phpunit.run",
"when": "editorLangId == 'php'"
},
{
"key": "meta+k f",
"command": "better-phpunit.run-file",
"when": "editorLangId == 'php'"
},
{
"key": "meta+k meta+f",
"command": "-better-phpunit.run-file",
"when": "editorLangId == 'php'"
},
{
"key": "meta+k a",
"command": "better-phpunit.run-suite",
"when": "editorLangId == 'php'"
},
{
"key": "ctrl+k e",
"command": "workbench.files.action.focusOpenEditorsView",
"when": "-workbench.explorer.openEditorsView.active"
},
{
"key": "alt+i",
"command": "settings.cycle.toggle_indentation_guide"
},
{
"key": "ctrl+shift+i",
"command": "-emojisense.quickEmojitext",
"when": "editorTextFocus"
}
]