mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-23 23:34:12 +03:00
Merge remote-tracking branch 'potatoalienof13/master'
This commit is contained in:
commit
38077ca826
@ -420,6 +420,12 @@ select_to_reverse(const Context& context, const Selection& selection,
|
|||||||
Codepoint c, int count, bool inclusive)
|
Codepoint c, int count, bool inclusive)
|
||||||
{
|
{
|
||||||
auto& buffer = context.buffer();
|
auto& buffer = context.buffer();
|
||||||
|
|
||||||
|
// if we are selecting backwards from the beginning of the buffer,
|
||||||
|
// there is nothing more that can be selected.
|
||||||
|
if (selection.cursor() == buffer.begin())
|
||||||
|
return {};
|
||||||
|
|
||||||
Utf8Iterator begin{buffer.iterator_at(selection.cursor()), buffer};
|
Utf8Iterator begin{buffer.iterator_at(selection.cursor()), buffer};
|
||||||
Utf8Iterator end = begin;
|
Utf8Iterator end = begin;
|
||||||
do
|
do
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
<a-t><ret>
|
Loading…
Reference in New Issue
Block a user