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:
Artem Molonosov 2026-02-02 12:38:00 +01:00 committed by GitHub
parent 431c623eb7
commit 33fbc7163a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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