fix default keybindings for select all matches

This commit is contained in:
Mikayla 2023-09-20 17:14:19 -07:00
parent fe10875285
commit 58f4efb579
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View File

@ -303,7 +303,7 @@
"replace_newest": false "replace_newest": false
} }
], ],
"cmd-shift-d": "editor::SelectAllMatches", "cmd-shift-l": "editor::SelectAllMatches",
"ctrl-cmd-d": [ "ctrl-cmd-d": [
"editor::SelectPrevious", "editor::SelectPrevious",
{ {
@ -463,7 +463,7 @@
"context": "Editor", "context": "Editor",
"bindings": { "bindings": {
"ctrl-shift-k": "editor::DeleteLine", "ctrl-shift-k": "editor::DeleteLine",
"cmd-shift-l": "editor::SplitSelectionIntoLines", "cmd-shift-d": "editor::DuplicateLine",
"ctrl-j": "editor::JoinLines", "ctrl-j": "editor::JoinLines",
"ctrl-cmd-up": "editor::MoveLineUp", "ctrl-cmd-up": "editor::MoveLineUp",
"ctrl-cmd-down": "editor::MoveLineDown", "ctrl-cmd-down": "editor::MoveLineDown",

View File

@ -17,6 +17,7 @@
"ctrl-shift-down": "editor::AddSelectionBelow", "ctrl-shift-down": "editor::AddSelectionBelow",
"cmd-shift-space": "editor::SelectAll", "cmd-shift-space": "editor::SelectAll",
"ctrl-shift-m": "editor::SelectLargerSyntaxNode", "ctrl-shift-m": "editor::SelectLargerSyntaxNode",
"cmd-shift-l": "editor::SplitSelectionIntoLines",
"cmd-shift-a": "editor::SelectLargerSyntaxNode", "cmd-shift-a": "editor::SelectLargerSyntaxNode",
"shift-f12": "editor::FindAllReferences", "shift-f12": "editor::FindAllReferences",
"alt-cmd-down": "editor::GoToDefinition", "alt-cmd-down": "editor::GoToDefinition",