-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathkeybindings.json
42 lines (42 loc) · 951 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
34
35
36
37
38
39
40
41
42
// Place your key bindings in this file to override the defaults
[
{
"key": "cmd+`",
"command": "eslint.applyAllFixes",
"when": "editorTextFocus"
},
{
"key": "cmd+g",
"command": "workbench.action.gotoLine"
},
{
"key": "ctrl+g",
"command": "-workbench.action.gotoLine"
},
{
"key": "cmd+[IntlBackslash]",
"command": "eslint.executeAutofix"
},
{
"key": "ctrl+cmd+p",
"command": "projectManager.listProjectsNewWindow",
},
{
"key": "cmd+shift+d",
"command": "editor.action.copyLinesDownAction"
},
{
"key": "cmd+ъ",
"command": "editor.action.insertSnippet",
"args": {
"name": "eslint-disable-line"
}
},
{
"key": "cmd+]",
"command": "editor.action.insertSnippet",
"args": {
"name": "eslint-disable-line"
}
}
]