summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-11-10 20:30:27 +0000
committerMaxime Coste <frrrwww@gmail.com>2015-11-10 20:39:17 +0000
commita0bcdd83df6d279f22042915266b53e70e80c140 (patch)
tree28dd8fd4fd1a22c882abe1c56a98a18986d25892 /src/input_handler.cc
parent9134066e851f360b6aeaf0e89d0e9bb281b9b100 (diff)
Document default registers
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc
index 6b35fcc5..2cb1f379 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -149,7 +149,12 @@ constexpr StringView register_doc =
"Special registers:\n"
" * %: buffer name\n"
" * .: selection contents\n"
- " * #: selection index\n";
+ " * #: selection index\n"
+ " * [0-9]: selections capture group\n"
+ " * \": default yank/paste register\n"
+ " * @: default macro register\n"
+ " * /: default search register\n"
+ " * ^: default mark register\n";
class Normal : public InputMode
{