Normal: add <a-S> to select first and last char of selection
Fixes #550
This commit is contained in:
parent
5f5188a89c
commit
706c1672d5
|
@ -513,11 +513,14 @@ to skim through the jump list using:
|
|||
*s*::
|
||||
create a selection
|
||||
|
||||
*S*::
|
||||
split the current selection
|
||||
|
||||
*<a-s>*::
|
||||
split the current selections on line boundaries
|
||||
|
||||
*S*::
|
||||
split the current selection
|
||||
*<a-S>*::
|
||||
select first and last characters of each selections
|
||||
|
||||
*C*::
|
||||
copy the current selection to the next line
|
||||
|
|
|
@ -932,6 +932,19 @@ void split_lines(Context& context, NormalParams)
|
|||
selections = std::move(res);
|
||||
}
|
||||
|
||||
void select_boundaries(Context& context, NormalParams)
|
||||
{
|
||||
auto& selections = context.selections();
|
||||
Vector<Selection> res;
|
||||
for (auto& sel : selections)
|
||||
{
|
||||
res.push_back(sel.min());
|
||||
if (sel.min() != sel.max())
|
||||
res.push_back(sel.max());
|
||||
}
|
||||
selections = std::move(res);
|
||||
}
|
||||
|
||||
void join_lines_select_spaces(Context& context, NormalParams)
|
||||
{
|
||||
auto& buffer = context.buffer();
|
||||
|
@ -2011,6 +2024,7 @@ static const HashMap<Key, NormalCmd, MemoryDomain::Undefined, KeymapBackend> key
|
|||
{ {'s'}, {"select regex matches in selected text", select_regex} },
|
||||
{ {'S'}, {"split selected text on regex matches", split_regex} },
|
||||
{ {alt('s')}, {"split selected text on line ends", split_lines} },
|
||||
{ {alt('S')}, {"select selection boundaries", select_boundaries} },
|
||||
|
||||
{ {'.'}, {"repeat last insert command", repeat_last_insert} },
|
||||
{ {alt('.')}, {"repeat last object select/character find", repeat_last_select} },
|
||||
|
|
Loading…
Reference in New Issue
Block a user