From 7b740857084a89f1b201874acf4690c21444d92e Mon Sep 17 00:00:00 2001 From: Clemens Zeidler Date: Wed, 3 Mar 2021 22:07:44 +1300 Subject: [PATCH] Add missing binding + remove invalid note HOME and END are going back to the start/end of the same line, i.e. they are different to the other bindings. --- src/KeyBindingsDefaults.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/KeyBindingsDefaults.ts b/src/KeyBindingsDefaults.ts index ed98a06c7f..f777f2c5f6 100644 --- a/src/KeyBindingsDefaults.ts +++ b/src/KeyBindingsDefaults.ts @@ -68,7 +68,6 @@ const messageComposerBindings = (): KeyBinding[] => { ctrlOrCmd: true, }, }, - // Note: the following two bindings also work with just HOME and END, add them here? { action: MessageComposerAction.MoveCursorToStart, keyCombo: { @@ -165,6 +164,14 @@ const autocompleteBindings = (): KeyBinding[] => { shiftKey: true, }, }, + { + action: AutocompleteAction.ApplySelection, + keyCombo: { + key: Key.TAB, + ctrlKey: true, + shiftKey: true, + }, + }, { action: AutocompleteAction.Cancel, keyCombo: {