commit 4de507640cfff9520e9559afc2177b572b8642cb Author: Jonathan Agmon Date: Tue Oct 14 16:11:24 2025 +0000 Initial commit diff --git a/keybindings.json b/keybindings.json new file mode 100644 index 0000000..fbb6fba --- /dev/null +++ b/keybindings.json @@ -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" + } + } +]