Initial commit

This commit is contained in:
2025-10-14 16:11:24 +00:00
commit 4de507640c

17
keybindings.json Normal file
View File

@@ -0,0 +1,17 @@
// 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"
}
}
]