Files
.profile/keybindings.json
2025-10-14 16:11:24 +00:00

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"
}
}
]