@jaspermayone.com's dotfiles
1// Place your key bindings in this file to override the defaultsauto[]
2[
3 {
4 "key": "cmd+p",
5 "command": "workbench.action.showCommands",
6 },
7 {
8 "key": "cmd+/",
9 "command": "editor.action.commentLine",
10 "when": "editorTextFocus && !editorReadonly"
11 },
12 {
13 "key": "cmd+/",
14 "command": "-editor.action.commentLine",
15 "when": "editorTextFocus && !editorReadonly"
16 },
17 {
18 "key": "alt+cmd+/",
19 "command": "editor.action.blockComment",
20 "when": "editorTextFocus && !editorReadonly"
21 },
22 {
23 "key": "shift+alt+a",
24 "command": "-editor.action.blockComment",
25 "when": "editorTextFocus && !editorReadonly"
26 },
27 {
28 "key": "alt+cmd+f",
29 "command": "swift.insertFunctionComment",
30 "when": "editorTextFocus"
31 },
32 {
33 "key": "alt+cmd+/",
34 "command": "-swift.insertFunctionComment",
35 "when": "editorTextFocus"
36 },
37 {
38 "key": "shift+enter alt+cmd",
39 "command": "liveshare.followToTheSide",
40 "when": "liveshare:hasCollaborators"
41 },
42 {
43 "key": "alt+cmd+/",
44 "command": "-liveshare.followToTheSide",
45 "when": "liveshare:hasCollaborators"
46 }
47]
48// testing...