-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVSCode_Parameters_Keybindings.json
61 lines (58 loc) · 2.06 KB
/
VSCode_Parameters_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
/* ******************************************************************************* */
/* */
/* Vim VSCode Parameters Keybindings.json */
/* */
/* By: YohanGH <[Your Email]> __...--~~~~~-._ _.-~~~~~--...__ */
/* // `V' \\ */
/* // | \\ */
/* Created: 2023-11-29 By: YohanGH //__...--~~~~~~-._ | _.-~~~~~~--...__\\ */
/* Updated: 2023-11-29 By: YohanGH //__.....----~~~~._\ | /_.~~~~----.....__\\ */
/* ====================\\|//==================== */
/* `---` */
/* ******************************************************************************* */
[
{
"key": "ctrl+s",
"command": "saveAll"
},
{
"key": "ctrl+k s",
"command": "-saveAll"
},
{
"key": "alt+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+down",
"command": "-editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+s",
"command": "workbench.action.files.saveFiles"
},
{
"key": "alt+1",
"command": "multiCommand.makeRoom"
},
{
"key": "ctrl+d",
"command": "editor.action.smartSelect.expand",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+d",
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+alt+l",
"command": "editor.action.formatDocument"
},
{
"key": "ctrl-t",
"command": "workbench.action.terminal.toggleTerminal"
}
]