summaryrefslogtreecommitdiff
path: root/src/normal.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-06-08 07:14:20 +0100
committerMaxime Coste <mawww@kakoune.org>2017-06-08 07:14:20 +0100
commit609b0bbbac7e8aaf4e5317032c6dd2cc53b22813 (patch)
tree752ebdb1ebb175984207112c3ec231cf35eac4f1 /src/normal.cc
parenteadf8930fb18b8c9742631af01de61dac44a63d7 (diff)
parent86cc66577bfa41d3d40ac86efaff611c6321baf1 (diff)
Merge remote-tracking branch 'Delapouite/rotate-forward'
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 1cedef8f..53e7cbd5 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} },