18 lines
360 B
JSON
18 lines
360 B
JSON
// Place your key bindings in this file to override the defaults
|
|
[
|
|
{
|
|
// Reenable micro editor quit command
|
|
"key": "ctrl+q",
|
|
"command": "",
|
|
"when": "terminalFocus"
|
|
},
|
|
{
|
|
// Move to parent directory in terminal
|
|
"key": "alt+up",
|
|
"command": "workbench.action.terminal.sendSequence",
|
|
"args": {
|
|
"text": "cd ..\u000D"
|
|
}
|
|
}
|
|
]
|