summaryrefslogtreecommitdiff
path: root/src/normal.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2022-10-11 20:39:10 +1100
committerMaxime Coste <mawww@kakoune.org>2022-10-11 20:39:10 +1100
commit360a6847be5c79a57da73c15efbbb954cd8ba749 (patch)
treeaf36853340b2336e58abb40f3276f64dde36732c /src/normal.cc
parent32e5b0bd318b68aac06c04afcbf76704887eac8c (diff)
parent69f4d1261b0dd5351eeaa5ac7438012159dd4b07 (diff)
Merge remote-tracking branch 'vsyl/c_description'
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 0f5c1c2f..12843565 100644
--- a/src/normal.cc
+++ b/src/normal.cc
@@ -2364,8 +2364,8 @@ static constexpr HashMap<Key, NormalCmd, MemoryDomain::Undefined, KeymapBackend>
{ {'_'}, {"trim selections", trim_selections} },
- { {'C'}, {"copy selection on next lines", copy_selections_on_next_lines<Forward>} },
- { {alt('C')}, {"copy selection on previous lines", copy_selections_on_next_lines<Backward>} },
+ { {'C'}, {"duplicate selections on the lines that follow them.", copy_selections_on_next_lines<Forward>} },
+ { {alt('C')}, {"duplicate selections on the lines that precede them.", copy_selections_on_next_lines<Backward>} },
{ {Key::Space}, {"user mappings", exec_user_mappings} },