From b3f2a7e46ebde3edbaf339628db092da57740320 Mon Sep 17 00:00:00 2001 From: Delapouite Date: Wed, 5 Jul 2017 20:23:02 +0200 Subject: [PATCH] Refine info titles to distinguish f/t (select) and F/T (extend) --- src/normal.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/normal.cc b/src/normal.cc index 3b1ec24a..37b71d10 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -1269,8 +1269,9 @@ template void select_to_next_char(Context& context, NormalParams params) { auto get_title = [] { - return format("{}select {} next char", + return format("{}{} {} next char", flags & SelectFlags::Reverse ? "reverse " : "", + flags & SelectFlags::Extend ? "extend" : "select", flags & SelectFlags::Inclusive ? "onto" : "to"); };