mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
swap yank command registers (#8708)
#8703 swapped the `+` and `*` registers, but did not swap them in the corresponding yank commands.
This commit is contained in:
parent
8dc197721b
commit
10b178e94b
3 changed files with 29 additions and 29 deletions
|
@ -59,8 +59,8 @@ Some registers have special behavior when read from and written to.
|
|||
| `#` | Selection indices (first selection is `1`, second is `2`, etc.) | This register is not writable |
|
||||
| `.` | Contents of the current selections | This register is not writable |
|
||||
| `%` | Name of the current file | This register is not writable |
|
||||
| `*` | Reads from the system clipboard | Joins and yanks to the system clipboard |
|
||||
| `+` | Reads from the primary clipboard | Joins and yanks to the primary clipboard |
|
||||
| `+` | Reads from the system clipboard | Joins and yanks to the system clipboard |
|
||||
| `*` | Reads from the primary clipboard | Joins and yanks to the primary clipboard |
|
||||
|
||||
When yanking multiple selections to the clipboard registers, the selections
|
||||
are joined with newlines. Pasting from these registers will paste multiple
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue