From 2ce59cdded0cbf0767a8b2518d386c8b57785c3d Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 11 Jan 2016 17:28:22 +0100 Subject: [PATCH] Registers: the # register is not readonly --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 82364a7..45807a6 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ Vim provides the following registers: | Small delete | `-` | vim | [ ] | Last deletion that was less than one line. | | Named | `a` to `z`, `A` to `Z` | user | [ ] | If you yank to register `a`, you replace its text. If you yank to register `A`, you append to the text in register `a`. | | Read-only | `:`, `.`, `%` | vim | [x] | `:`: Last command, `.`: Last inserted text, `%`: Current filename. | -| Alternate buffer | `#` | vim | [x] | Most of the time the previously visited buffer of the current window. See `:h alternate-file` | +| Alternate buffer | `#` | vim | [ ] | Most of the time the previously visited buffer of the current window. See `:h alternate-file` | | Expression | `=` | user | [ ] | Evaluation of the VimL expression that was yanked. E.g. do this in insert mode: `=5+5` and "10" will be inserted in the buffer. | | Selection | `+`, `*` | vim | [ ] | `*` and `+` are the [clipboard](#clipboard) registers. | | Drop | `~` | vim | [x] | From last drag'n'drop. |