From 4de507640cfff9520e9559afc2177b572b8642cb Mon Sep 17 00:00:00 2001 From: Jonathan Agmon Date: Tue, 14 Oct 2025 16:11:24 +0000 Subject: [PATCH] Initial commit --- keybindings.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 keybindings.json 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" + } + } +]