From c59e9c1d825c14ad71be21a5a6a2b75cfdd6ae58 Mon Sep 17 00:00:00 2001 From: zKXDEX Date: Sun, 19 Nov 2023 23:20:21 +0100 Subject: [PATCH] fixed keyboard shortcut (control + backspace) in windows --- tabby-terminal/src/api/baseTerminalTab.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-terminal/src/api/baseTerminalTab.component.ts b/tabby-terminal/src/api/baseTerminalTab.component.ts index 06c4f43a80..33dc415db1 100644 --- a/tabby-terminal/src/api/baseTerminalTab.component.ts +++ b/tabby-terminal/src/api/baseTerminalTab.component.ts @@ -290,7 +290,7 @@ export class BaseTerminalTabComponent

extends Bas break case 'delete-previous-word': this.forEachFocusedTerminalPane(tab => { - tab.sendInput('\x1b\x7f') + tab.sendInput('\u0017') }) break case 'delete-next-word':