-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode-setting.json
More file actions
70 lines (63 loc) · 1.83 KB
/
Copy pathvscode-setting.json
File metadata and controls
70 lines (63 loc) · 1.83 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
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
// Place your key bindings in this file to override the defaults
// IF CMD+W IS TO CLOSE TAB then surely there must be..
//Move to your previous/ next Editor.
[
{
"key": "cmd+k",
"command": "workbench.action.nextEditor",
},
{
"key": "cmd+j",
"command": "workbench.action.previousEditor",
},
//move active Editor left or right (usefull for Full-stack web dev).
{
"key": "cmd+ctrl+j",
"command": "moveActiveEditor",
"args": {
"to": "left"
}
},
{
"key": "cmd+ctrl+k",
"command": "moveActiveEditor",
"args": {
"to": "right"
}
},
//VSCode Integerated Terminal Commands.
{
"key": "cmd+n",
"command": "workbench.action.terminal.newInActiveWorkspace",
},
//Half screeen Terminal.
{
"key": "cmd+enter",
"command": "workbench.action.terminal.toggleTerminal", //minimize terminal or mediumize terminal.
},
//Full screen Terminal..
{
"key": "cmd+ctrl+enter",
"command": "workbench.action.toggleMaximizedPanel", //Full or mediumize
},
{
"key": "cmd+d",
"command": "workbench.action.terminal.split", //splits
"when": "terminalFocus && terminalProcessSupported"
},
{
"key": "cmd+w",
"command": "workbench.action.terminal.kill",//kills each auto
"when": "terminalFocus"
},
{
"key": "cmd+k",
"command": "workbench.action.terminal.focusNextPane", //Switching b/w terminal when split mode.. Ex.one for server another Git
"when": "terminalFocus && terminalProcessSupported"
},
{
"key": "cmd+j",
"command": "workbench.action.terminal.focusPreviousPane", // same above just Rightside
"when": "terminalFocus && terminalProcessSupported"
}
]