vim: Add multicursor shortcuts
- g n / g N to select next/previous - g > / g < to select next/previous replacing current - g a to select all matches
This commit is contained in:
parent
ff5d0f2aeb
commit
b29e295e1b
2 changed files with 65 additions and 0 deletions
|
@ -125,6 +125,21 @@
|
|||
"g shift-t": "pane::ActivatePrevItem",
|
||||
"g d": "editor::GoToDefinition",
|
||||
"g shift-d": "editor::GoToTypeDefinition",
|
||||
"g n": "vim::SelectNext",
|
||||
"g shift-n": "vim::SelectPrevious",
|
||||
"g >": [
|
||||
"editor::SelectNext",
|
||||
{
|
||||
"replace_newest": true
|
||||
}
|
||||
],
|
||||
"g <": [
|
||||
"editor::SelectPrevious",
|
||||
{
|
||||
"replace_newest": true
|
||||
}
|
||||
],
|
||||
"g a": "editor::SelectAllMatches",
|
||||
"g s": "outline::Toggle",
|
||||
"g shift-s": "project_symbols::Toggle",
|
||||
"g .": "editor::ToggleCodeActions", // zed specific
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue