this repo has no description
1[
2 // shift+cmd+' maximize panel (from jetbrains)
3 {
4 "key": "shift+cmd+'",
5 "command": "workbench.action.toggleMaximizedPanel",
6 "when": "panelVisible"
7 },
8
9 // terminal ctrl+[ → ESC
10 {
11 "key": "ctrl+[",
12 "command": "workbench.action.terminal.sendSequence",
13 "args": { "text": "\u001b" },
14 "when": "terminalFocus"
15 }
16]