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.
This commit is contained in:
parent
0214397e27
commit
7b74085708
1 changed files with 8 additions and 1 deletions
|
@ -68,7 +68,6 @@ const messageComposerBindings = (): KeyBinding<MessageComposerAction>[] => {
|
|||
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<AutocompleteAction>[] => {
|
|||
shiftKey: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
action: AutocompleteAction.ApplySelection,
|
||||
keyCombo: {
|
||||
key: Key.TAB,
|
||||
ctrlKey: true,
|
||||
shiftKey: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
action: AutocompleteAction.Cancel,
|
||||
keyCombo: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue