Fix bug preventing the assist command from working in certain keymaps

This commit is contained in:
Joseph T. Lyons 2023-06-30 13:27:48 -04:00
parent a9c1395b9b
commit 4a654f5252
3 changed files with 5 additions and 9 deletions

View file

@ -24,9 +24,7 @@
], ],
"ctrl-shift-down": "editor::AddSelectionBelow", "ctrl-shift-down": "editor::AddSelectionBelow",
"ctrl-shift-up": "editor::AddSelectionAbove", "ctrl-shift-up": "editor::AddSelectionAbove",
"cmd-shift-backspace": "editor::DeleteToBeginningOfLine", "cmd-shift-backspace": "editor::DeleteToBeginningOfLine"
"cmd-shift-enter": "editor::NewlineAbove",
"cmd-enter": "editor::NewlineBelow"
} }
}, },
{ {

View file

@ -24,9 +24,7 @@
"ctrl-.": "editor::GoToHunk", "ctrl-.": "editor::GoToHunk",
"ctrl-,": "editor::GoToPrevHunk", "ctrl-,": "editor::GoToPrevHunk",
"ctrl-backspace": "editor::DeleteToPreviousWordStart", "ctrl-backspace": "editor::DeleteToPreviousWordStart",
"ctrl-delete": "editor::DeleteToNextWordEnd", "ctrl-delete": "editor::DeleteToNextWordEnd"
"cmd-shift-enter": "editor::NewlineAbove",
"cmd-enter": "editor::NewlineBelow"
} }
}, },
{ {

View file

@ -12,8 +12,6 @@
"ctrl-shift-d": "editor::DuplicateLine", "ctrl-shift-d": "editor::DuplicateLine",
"cmd-b": "editor::GoToDefinition", "cmd-b": "editor::GoToDefinition",
"cmd-j": "editor::ScrollCursorCenter", "cmd-j": "editor::ScrollCursorCenter",
"cmd-alt-enter": "editor::NewlineAbove",
"cmd-enter": "editor::NewlineBelow",
"cmd-shift-l": "editor::SelectLine", "cmd-shift-l": "editor::SelectLine",
"cmd-shift-t": "outline::Toggle", "cmd-shift-t": "outline::Toggle",
"alt-backspace": "editor::DeleteToPreviousWordStart", "alt-backspace": "editor::DeleteToPreviousWordStart",
@ -56,7 +54,9 @@
}, },
{ {
"context": "Editor && mode == full", "context": "Editor && mode == full",
"bindings": {} "bindings": {
"cmd-alt-enter": "editor::NewlineAbove"
}
}, },
{ {
"context": "BufferSearchBar", "context": "BufferSearchBar",