From 9b59aeec09070a4a9bf7b0418c78926726a3f5e4 Mon Sep 17 00:00:00 2001 From: Jonathan Agmon Date: Sat, 1 Nov 2025 13:13:19 +0000 Subject: [PATCH] fixed alt+up terminalFocus --- keybindings.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/keybindings.json b/keybindings.json index fbb6fba..5169310 100644 --- a/keybindings.json +++ b/keybindings.json @@ -9,9 +9,10 @@ { // Move to parent directory in terminal "key": "alt+up", - "command": "workbench.action.terminal.sendSequence", - "args": { - "text": "cd ..\u000D" - } + "command": "workbench.action.terminal.sendSequence", + "args": { + "text": "cd ..\u000D" + }, + "when": "terminalFocus" } ]