Merge remote-tracking branch 'occivink/fix-split-stray-sel'
This commit is contained in:
commit
37b160e935
|
@ -965,7 +965,8 @@ Vector<Selection> split_on_matches(const Buffer& buffer, ConstArrayView<Selectio
|
||||||
ThreadedRegexVM<BufferIterator, RegexMode::Forward | RegexMode::Search> vm{*regex.impl()};
|
ThreadedRegexVM<BufferIterator, RegexMode::Forward | RegexMode::Search> vm{*regex.impl()};
|
||||||
for (auto& sel : selections)
|
for (auto& sel : selections)
|
||||||
{
|
{
|
||||||
auto begin = buffer.iterator_at(sel.min());
|
auto sel_begin = buffer.iterator_at(sel.min());
|
||||||
|
auto begin = sel_begin;
|
||||||
auto sel_end = utf8::next(buffer.iterator_at(sel.max()), buf_end);
|
auto sel_end = utf8::next(buffer.iterator_at(sel.max()), buf_end);
|
||||||
|
|
||||||
for (auto&& match : RegexIterator{begin, sel_end, vm, match_flags(buffer, begin, sel_end)})
|
for (auto&& match : RegexIterator{begin, sel_end, vm, match_flags(buffer, begin, sel_end)})
|
||||||
|
@ -975,7 +976,7 @@ Vector<Selection> split_on_matches(const Buffer& buffer, ConstArrayView<Selectio
|
||||||
if (end == buf_end)
|
if (end == buf_end)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (end != buf_begin)
|
if (end != sel_begin)
|
||||||
{
|
{
|
||||||
auto sel_end = (begin == end) ? end : utf8::previous(end, begin);
|
auto sel_end = (begin == end) ? end : utf8::previous(end, begin);
|
||||||
result.push_back(keep_direction({ begin.coord(), sel_end.coord() }, sel));
|
result.push_back(keep_direction({ begin.coord(), sel_end.coord() }, sel));
|
||||||
|
|
Loading…
Reference in New Issue
Block a user