summaryrefslogtreecommitdiff
path: root/src/normal.cc
diff options
context:
space:
mode:
authorDelapouite <delapouite@gmail.com>2017-06-07 08:53:33 +0200
committerDelapouite <delapouite@gmail.com>2017-06-07 08:53:33 +0200
commit86cc66577bfa41d3d40ac86efaff611c6321baf1 (patch)
treeb56c8d93faa1b143414dde4091eac753e562b11c /src/normal.cc
parent73ecbdbc97f422e67ef1da9972ba7b357fa3ca12 (diff)
Clarify rotation direction between <'> and <a-'> in info help
Diffstat (limited to 'src/normal.cc')
-rw-r--r--src/normal.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/normal.cc b/src/normal.cc
index c4b13046..30206318 100644
--- a/src/normal.cc
+++ b/src/normal.cc
@@ -2014,8 +2014,8 @@ const HashMap<Key, NormalCmd> keymap{
{ {ctrl('o')}, {"jump backward in jump list", jump<Backward>} },
{ {ctrl('s')}, {"push current selections in jump list", push_selections} },
- { {'\''}, {"rotate main selection", rotate_selections<Forward>} },
- { {alt('\'')}, {"rotate main selection", rotate_selections<Backward>} },
+ { {'\''}, {"rotate main selection forward", rotate_selections<Forward>} },
+ { {alt('\'')}, {"rotate main selection backward", rotate_selections<Backward>} },
{ {alt('"')}, {"rotate selections content", rotate_selections_content} },
{ {'q'}, {"replay recorded macro", replay_macro} },