2012-01-31 20:12:06 +01:00
|
|
|
#include "selection.hh"
|
|
|
|
|
2012-10-08 14:26:57 +02:00
|
|
|
#include "utf8.hh"
|
|
|
|
|
2012-01-31 20:12:06 +01:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2012-11-30 18:32:49 +01:00
|
|
|
void Range::merge_with(const Range& range)
|
|
|
|
{
|
|
|
|
if (m_first < m_last)
|
|
|
|
m_first = std::min(m_first, range.m_first);
|
|
|
|
if (m_first > m_last)
|
|
|
|
m_first = std::max(m_first, range.m_first);
|
|
|
|
m_last = range.m_last;
|
|
|
|
}
|
|
|
|
|
|
|
|
BufferIterator Range::begin() const
|
|
|
|
{
|
|
|
|
return std::min(m_first, m_last);
|
|
|
|
}
|
|
|
|
|
|
|
|
BufferIterator Range::end() const
|
|
|
|
{
|
|
|
|
return utf8::next(std::max(m_first, m_last));
|
|
|
|
}
|
|
|
|
|
2012-12-11 19:51:59 +01:00
|
|
|
void Range::check_invariant() const
|
2012-01-31 20:12:06 +01:00
|
|
|
{
|
2013-02-27 19:02:01 +01:00
|
|
|
#ifdef KAK_DEBUG
|
2013-01-23 14:25:48 +01:00
|
|
|
assert(m_first.is_valid());
|
|
|
|
assert(m_last.is_valid());
|
|
|
|
assert(utf8::is_character_start(m_first));
|
|
|
|
assert(utf8::is_character_start(m_last));
|
2013-02-27 19:02:01 +01:00
|
|
|
#endif
|
2012-01-31 20:12:06 +01:00
|
|
|
}
|
|
|
|
|
2012-10-08 14:26:57 +02:00
|
|
|
static void avoid_eol(BufferIterator& it)
|
|
|
|
{
|
|
|
|
const auto column = it.column();
|
|
|
|
if (column != 0 and column == it.buffer().line_length(it.line()) - 1)
|
|
|
|
it = utf8::previous(it);
|
|
|
|
}
|
|
|
|
|
2012-08-15 18:20:02 +02:00
|
|
|
void Selection::avoid_eol()
|
|
|
|
{
|
2012-11-30 18:32:49 +01:00
|
|
|
Kakoune::avoid_eol(first());
|
|
|
|
Kakoune::avoid_eol(last());
|
2012-08-15 18:20:02 +02:00
|
|
|
}
|
|
|
|
|
2012-01-31 20:12:06 +01:00
|
|
|
}
|