mirror of
https://github.com/mawww/kakoune.git
synced 2025-01-07 04:25:15 +03:00
Refine info titles to distinguish f/t (select) and F/T (extend)
This commit is contained in:
parent
620e718087
commit
b3f2a7e46e
@ -1269,8 +1269,9 @@ template<SelectFlags flags>
|
|||||||
void select_to_next_char(Context& context, NormalParams params)
|
void select_to_next_char(Context& context, NormalParams params)
|
||||||
{
|
{
|
||||||
auto get_title = [] {
|
auto get_title = [] {
|
||||||
return format("{}select {} next char",
|
return format("{}{} {} next char",
|
||||||
flags & SelectFlags::Reverse ? "reverse " : "",
|
flags & SelectFlags::Reverse ? "reverse " : "",
|
||||||
|
flags & SelectFlags::Extend ? "extend" : "select",
|
||||||
flags & SelectFlags::Inclusive ? "onto" : "to");
|
flags & SelectFlags::Inclusive ? "onto" : "to");
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user