1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-23 23:34:12 +03:00

Support count argument for [p and ]p

Part of #795
This commit is contained in:
Johannes Altmanninger 2020-07-19 15:34:59 +02:00
parent 581f17970d
commit 98a1afcab0
16 changed files with 109 additions and 38 deletions

View File

@ -558,51 +558,55 @@ select_paragraph(const Context& context, const Selection& selection,
{ {
auto& buffer = context.buffer(); auto& buffer = context.buffer();
BufferIterator first = buffer.iterator_at(selection.cursor()); BufferIterator first = buffer.iterator_at(selection.cursor());
BufferIterator last;
if (not (flags & ObjectFlags::ToEnd) and first.coord() > BufferCoord{0,1} and for (++count; count > 0; --count)
is_eol(*(first-1)) and first-1 != buffer.begin() and is_eol(*(first-2)))
--first;
else if ((flags & ObjectFlags::ToEnd) and
first != buffer.begin() and (first+1) != buffer.end() and
is_eol(*(first-1)) and is_eol(*first))
++first;
BufferIterator last = first;
if ((flags & ObjectFlags::ToBegin) and first != buffer.begin())
{ {
skip_while_reverse(first, buffer.begin(), if (not (flags & ObjectFlags::ToEnd) and first.coord() > BufferCoord{0,1} and
[](Codepoint c){ return is_eol(c); }); is_eol(*(first-1)) and first-1 != buffer.begin() and is_eol(*(first-2)))
if (flags & ObjectFlags::ToEnd)
last = first;
while (first != buffer.begin())
{
char cur = *first;
char prev = *(first-1);
if (is_eol(prev) and is_eol(cur))
{
++first;
break;
}
--first; --first;
} else if ((flags & ObjectFlags::ToEnd) and
} first != buffer.begin() and (first+1) != buffer.end() and
if (flags & ObjectFlags::ToEnd) is_eol(*(first-1)) and is_eol(*first))
{ ++first;
if (last != buffer.end() and is_eol(*last)) if (last == BufferIterator{})
++last; last = first;
while (last != buffer.end())
if ((flags & ObjectFlags::ToBegin) and first != buffer.begin())
{ {
if (last != buffer.begin() and is_eol(*last) and is_eol(*(last-1))) skip_while_reverse(first, buffer.begin(),
{
if (not (flags & ObjectFlags::Inner))
skip_while(last, buffer.end(),
[](Codepoint c){ return is_eol(c); }); [](Codepoint c){ return is_eol(c); });
break; if (flags & ObjectFlags::ToEnd)
last = first;
while (first != buffer.begin())
{
char cur = *first;
char prev = *(first-1);
if (is_eol(prev) and is_eol(cur))
{
++first;
break;
}
--first;
} }
++last;
} }
--last; if (flags & ObjectFlags::ToEnd)
{
if (last != buffer.end() and is_eol(*last))
++last;
while (last != buffer.end())
{
if (last != buffer.begin() and is_eol(*last) and is_eol(*(last-1)))
{
if (not (flags & ObjectFlags::Inner))
skip_while(last, buffer.end(),
[](Codepoint c){ return is_eol(c); });
break;
}
++last;
}
--last;
}
} }
return (flags & ObjectFlags::ToEnd) ? Selection{first.coord(), last.coord()} return (flags & ObjectFlags::ToEnd) ? Selection{first.coord(), last.coord()}
: Selection{last.coord(), first.coord()}; : Selection{last.coord(), first.coord()};

View File

@ -0,0 +1 @@
2}p

View File

@ -0,0 +1,7 @@
%(a
b)
c
d
e

View File

@ -0,0 +1,7 @@
'a
b
c
d
'

View File

@ -0,0 +1 @@
2]p

View File

@ -0,0 +1,7 @@
%(a)
b
c
d
e

View File

@ -0,0 +1,7 @@
'a
b
c
d
'

View File

@ -0,0 +1 @@
9]p

View File

@ -0,0 +1,4 @@
%(a)
b
c

View File

@ -0,0 +1,5 @@
'a
b
c
'

View File

@ -0,0 +1 @@
<a-;>2{p

View File

@ -0,0 +1,7 @@
a
b
c
%(d
e)

View File

@ -0,0 +1,5 @@
'b
c
d
e'

View File

@ -0,0 +1 @@
2[p

View File

@ -0,0 +1,8 @@
a
b
c
d
%(e)
f

View File

@ -0,0 +1,5 @@
'b
c
d
e'