diff options
author | Skyler Hawthorne | 2023-11-04 00:35:38 +0000 |
---|---|---|
committer | GitHub | 2023-11-04 00:35:38 +0000 |
commit | 10b178e94b0d3c44c56f5cd573ff65b3249aea78 (patch) | |
tree | c2c146a7d04d964d18d3bcf629c2d27bf258888d /book | |
parent | 8dc197721bd6e7bb68e57ddeff0abf1aac067a1f (diff) |
swap yank command registers (#8708)
#8703 swapped the `+` and `*` registers, but did not swap them in the
corresponding yank commands.
Diffstat (limited to 'book')
-rw-r--r-- | book/src/usage.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/book/src/usage.md b/book/src/usage.md index e392e5e6..e0148219 100644 --- a/book/src/usage.md +++ b/book/src/usage.md @@ -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 |