mirror of
https://github.com/zed-industries/zed.git
synced 2026-07-10 00:13:29 +00:00
docs: Document visual mode bindings for multi-line insert/append (#48156)
Closes #44420 Added instructions and example keybindings to enable multi-cursor insert (`shift-i`) and append (`shift-a`) actions in visual mode, making it easier for users to perform these actions on multiple lines simultaneously. Release Notes: - N/A --------- Co-authored-by: Kunall Banerjee <hey@kimchiii.space>
This commit is contained in:
parent
431c623eb7
commit
33fbc7163a
1 changed files with 9 additions and 7 deletions
|
|
@ -124,13 +124,15 @@ per language.
|
|||
|
||||
These commands help you manage multiple cursors in Zed.
|
||||
|
||||
| Command | Default Shortcut |
|
||||
| ------------------------------------------------------------ | ---------------- |
|
||||
| Add a cursor selecting the next copy of the current word | `g l` |
|
||||
| Add a cursor selecting the previous copy of the current word | `g L` |
|
||||
| Skip latest word selection, and add next | `g >` |
|
||||
| Skip latest word selection, and add previous | `g <` |
|
||||
| Add a visual selection for every copy of the current word | `g a` |
|
||||
| Command | Default Shortcut |
|
||||
| --------------------------------------------------------------------------------- | ---------------- |
|
||||
| Add a cursor selecting the next copy of the current word | `g l` |
|
||||
| Add a cursor selecting the previous copy of the current word | `g L` |
|
||||
| Add a cursor at the end of every line in the current visual selection | `g A` |
|
||||
| Add a cursor at the first character of every line in the current visual selection | `g I` |
|
||||
| Add a visual selection for every copy of the current word | `g a` |
|
||||
| Skip latest word selection, and add next | `g >` |
|
||||
| Skip latest word selection, and add previous | `g <` |
|
||||
|
||||
### Pane management
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue