Files
.profile/keybindings.json

19 lines
395 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"
},
"when": "terminalFocus"
}
]