2011-09-02 18:51:20 +02:00
|
|
|
#include "window.hh"
|
|
|
|
|
2011-09-19 23:56:29 +02:00
|
|
|
#include "assert.hh"
|
2011-09-30 21:16:23 +02:00
|
|
|
#include "filters.hh"
|
2011-09-19 23:56:29 +02:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
#include <algorithm>
|
2011-10-04 20:49:41 +02:00
|
|
|
#include <sstream>
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2011-09-23 11:17:19 +02:00
|
|
|
BufferIterator Selection::begin() const
|
|
|
|
{
|
|
|
|
return std::min(m_first, m_last);
|
|
|
|
}
|
|
|
|
|
|
|
|
BufferIterator Selection::end() const
|
|
|
|
{
|
|
|
|
return std::max(m_first, m_last) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Selection::offset(int offset)
|
|
|
|
{
|
|
|
|
m_first += offset;
|
|
|
|
m_last += offset;
|
|
|
|
}
|
|
|
|
|
2011-09-24 14:39:40 +02:00
|
|
|
struct scoped_undo_group
|
|
|
|
{
|
|
|
|
scoped_undo_group(Buffer& buffer)
|
|
|
|
: m_buffer(buffer) { m_buffer.begin_undo_group(); }
|
|
|
|
|
|
|
|
~scoped_undo_group() { m_buffer.end_undo_group(); }
|
|
|
|
private:
|
|
|
|
Buffer& m_buffer;
|
|
|
|
};
|
|
|
|
|
2011-09-28 22:54:11 +02:00
|
|
|
class HighlightSelections
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
HighlightSelections(Window& window)
|
|
|
|
: m_window(window)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator()(DisplayBuffer& display_buffer)
|
|
|
|
{
|
|
|
|
SelectionList sorted_selections = m_window.m_selections;
|
|
|
|
|
|
|
|
std::sort(sorted_selections.begin(), sorted_selections.end(),
|
|
|
|
[](const Selection& lhs, const Selection& rhs) { return lhs.begin() < rhs.begin(); });
|
|
|
|
|
|
|
|
auto atom_it = display_buffer.begin();
|
|
|
|
auto sel_it = sorted_selections.begin();
|
|
|
|
|
|
|
|
while (atom_it != display_buffer.end()
|
|
|
|
and sel_it != sorted_selections.end())
|
|
|
|
{
|
|
|
|
Selection& sel = *sel_it;
|
|
|
|
DisplayAtom& atom = *atom_it;
|
|
|
|
|
|
|
|
// [###------]
|
|
|
|
if (atom.begin >= sel.begin() and atom.begin < sel.end() and atom.end > sel.end())
|
|
|
|
{
|
2011-10-07 16:19:58 +02:00
|
|
|
atom_it = display_buffer.split(atom_it, sel.end());
|
2011-09-29 10:55:08 +02:00
|
|
|
atom_it->attribute |= Attributes::Underline;
|
|
|
|
++atom_it;
|
2011-09-28 22:54:11 +02:00
|
|
|
++sel_it;
|
|
|
|
}
|
|
|
|
// [---###---]
|
|
|
|
else if (atom.begin < sel.begin() and atom.end > sel.end())
|
|
|
|
{
|
2011-10-07 16:19:58 +02:00
|
|
|
atom_it = display_buffer.split(atom_it, sel.begin());
|
|
|
|
atom_it = display_buffer.split(atom_it + 1, sel.end());
|
2011-09-29 10:55:08 +02:00
|
|
|
atom_it->attribute |= Attributes::Underline;
|
|
|
|
++atom_it;
|
2011-09-28 22:54:11 +02:00
|
|
|
++sel_it;
|
|
|
|
}
|
|
|
|
// [------###]
|
|
|
|
else if (atom.begin < sel.begin() and atom.end > sel.begin())
|
|
|
|
{
|
2011-10-07 16:19:58 +02:00
|
|
|
atom_it = display_buffer.split(atom_it, sel.begin()) + 1;
|
2011-09-29 10:55:08 +02:00
|
|
|
atom_it->attribute |= Attributes::Underline;
|
|
|
|
++atom_it;
|
2011-09-28 22:54:11 +02:00
|
|
|
}
|
|
|
|
// [#########]
|
|
|
|
else if (atom.begin >= sel.begin() and atom.end <= sel.end())
|
|
|
|
{
|
2011-09-29 10:55:08 +02:00
|
|
|
atom_it->attribute |= Attributes::Underline;
|
2011-09-28 22:54:11 +02:00
|
|
|
++atom_it;
|
|
|
|
}
|
|
|
|
// [---------]
|
|
|
|
else if (atom.begin >= sel.end())
|
|
|
|
++sel_it;
|
|
|
|
// [---------]
|
|
|
|
else if (atom.end <= sel.begin())
|
|
|
|
++atom_it;
|
|
|
|
else
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Window& m_window;
|
|
|
|
};
|
|
|
|
|
2011-09-08 02:13:19 +02:00
|
|
|
Window::Window(Buffer& buffer)
|
2011-09-02 18:51:20 +02:00
|
|
|
: m_buffer(buffer),
|
|
|
|
m_position(0, 0),
|
2011-09-19 23:56:29 +02:00
|
|
|
m_dimensions(0, 0),
|
|
|
|
m_current_inserter(nullptr)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
m_selections.push_back(Selection(buffer.begin(), buffer.begin()));
|
2011-10-03 16:30:14 +02:00
|
|
|
m_filters.push_back(colorize_cplusplus);
|
2011-10-12 20:52:22 +02:00
|
|
|
m_filters.push_back(expand_tabulations);
|
2011-09-28 22:54:11 +02:00
|
|
|
m_filters.push_back(HighlightSelections(*this));
|
2011-09-27 20:45:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Window::check_invariant() const
|
|
|
|
{
|
|
|
|
assert(not m_selections.empty());
|
|
|
|
}
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
DisplayCoord Window::cursor_position() const
|
2011-09-27 20:45:22 +02:00
|
|
|
{
|
|
|
|
check_invariant();
|
|
|
|
return line_and_column_at(m_selections.back().last());
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Window::erase()
|
|
|
|
{
|
2011-09-24 14:39:40 +02:00
|
|
|
scoped_undo_group undo_group(m_buffer);
|
2011-09-27 20:45:22 +02:00
|
|
|
erase_noundo();
|
|
|
|
}
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-09-27 20:45:22 +02:00
|
|
|
void Window::erase_noundo()
|
|
|
|
{
|
|
|
|
check_invariant();
|
2011-09-17 16:57:35 +02:00
|
|
|
for (auto& sel : m_selections)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-09-17 16:57:35 +02:00
|
|
|
m_buffer.erase(sel.begin(), sel.end());
|
|
|
|
sel = Selection(sel.begin(), sel.begin());
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
2011-10-10 16:28:39 +02:00
|
|
|
scroll_to_keep_cursor_visible_ifn();
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
template<typename Iterator>
|
|
|
|
static DisplayCoord measure_string(Iterator begin, Iterator end)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-10-14 16:29:53 +02:00
|
|
|
DisplayCoord result(0, 0);
|
|
|
|
while (begin != end)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-10-14 16:29:53 +02:00
|
|
|
if (*begin == '\n')
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
|
|
|
++result.line;
|
|
|
|
result.column = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
++result.column;
|
2011-10-14 16:29:53 +02:00
|
|
|
++begin;
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
static DisplayCoord measure_string(const Window::String& string)
|
|
|
|
{
|
|
|
|
return measure_string(string.begin(), string.end());
|
|
|
|
}
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
void Window::insert(const String& string)
|
|
|
|
{
|
2011-09-24 14:39:40 +02:00
|
|
|
scoped_undo_group undo_group(m_buffer);
|
2011-09-27 20:45:22 +02:00
|
|
|
insert_noundo(string);
|
|
|
|
}
|
2011-09-24 14:39:40 +02:00
|
|
|
|
2011-09-27 20:45:22 +02:00
|
|
|
void Window::insert_noundo(const String& string)
|
|
|
|
{
|
2011-09-17 16:57:35 +02:00
|
|
|
for (auto& sel : m_selections)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-09-17 16:57:35 +02:00
|
|
|
m_buffer.insert(sel.begin(), string);
|
|
|
|
sel.offset(string.length());
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
2011-10-10 16:28:39 +02:00
|
|
|
scroll_to_keep_cursor_visible_ifn();
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Window::append(const String& string)
|
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
scoped_undo_group undo_group(m_buffer);
|
|
|
|
append_noundo(string);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::append_noundo(const String& string)
|
|
|
|
{
|
|
|
|
for (auto& sel : m_selections)
|
|
|
|
m_buffer.insert(sel.end(), string);
|
2011-10-10 16:28:39 +02:00
|
|
|
scroll_to_keep_cursor_visible_ifn();
|
2011-09-06 20:52:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Window::undo()
|
|
|
|
{
|
2011-09-08 02:13:19 +02:00
|
|
|
return m_buffer.undo();
|
2011-09-06 20:52:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Window::redo()
|
|
|
|
{
|
2011-09-08 02:13:19 +02:00
|
|
|
return m_buffer.redo();
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
BufferCoord Window::window_to_buffer(const DisplayCoord& window_pos) const
|
2011-09-05 20:54:17 +02:00
|
|
|
{
|
2011-09-05 21:06:31 +02:00
|
|
|
return BufferCoord(m_position.line + window_pos.line,
|
|
|
|
m_position.column + window_pos.column);
|
2011-09-05 20:54:17 +02:00
|
|
|
}
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
DisplayCoord Window::buffer_to_window(const BufferCoord& buffer_pos) const
|
2011-09-05 20:54:17 +02:00
|
|
|
{
|
2011-10-14 16:29:53 +02:00
|
|
|
return DisplayCoord(buffer_pos.line - m_position.line,
|
2011-09-05 21:06:31 +02:00
|
|
|
buffer_pos.column - m_position.column);
|
2011-09-05 20:54:17 +02:00
|
|
|
}
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
BufferIterator Window::iterator_at(const DisplayCoord& window_pos) const
|
2011-09-05 20:54:17 +02:00
|
|
|
{
|
2011-09-08 02:13:19 +02:00
|
|
|
return m_buffer.iterator_at(window_to_buffer(window_pos));
|
2011-09-05 20:54:17 +02:00
|
|
|
}
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
DisplayCoord Window::line_and_column_at(const BufferIterator& iterator) const
|
2011-09-05 20:54:17 +02:00
|
|
|
{
|
2011-09-08 02:13:19 +02:00
|
|
|
return buffer_to_window(m_buffer.line_and_column_at(iterator));
|
2011-09-05 20:54:17 +02:00
|
|
|
}
|
|
|
|
|
2011-10-05 16:24:52 +02:00
|
|
|
void Window::clear_selections()
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
check_invariant();
|
|
|
|
Selection sel = Selection(m_selections.back().last(),
|
|
|
|
m_selections.back().last());
|
2011-09-02 18:51:20 +02:00
|
|
|
m_selections.clear();
|
2011-09-27 20:45:22 +02:00
|
|
|
m_selections.push_back(std::move(sel));
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2011-10-07 16:03:25 +02:00
|
|
|
void Window::select(const Selector& selector, bool append)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
check_invariant();
|
|
|
|
|
2011-10-07 16:03:25 +02:00
|
|
|
if (not append)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
Selection sel = selector(m_selections.back().last());
|
|
|
|
m_selections.clear();
|
|
|
|
m_selections.push_back(std::move(sel));
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-09-17 16:57:35 +02:00
|
|
|
for (auto& sel : m_selections)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-09-23 11:17:19 +02:00
|
|
|
sel = Selection(sel.first(), selector(sel.last()).last());
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
}
|
2011-09-05 20:54:17 +02:00
|
|
|
scroll_to_keep_cursor_visible_ifn();
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2011-09-23 16:31:15 +02:00
|
|
|
BufferString Window::selection_content() const
|
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
check_invariant();
|
|
|
|
|
|
|
|
return m_buffer.string(m_selections.back().begin(),
|
|
|
|
m_selections.back().end());
|
2011-09-23 16:31:15 +02:00
|
|
|
}
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
void Window::move_cursor(const DisplayCoord& offset, bool append)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2011-10-07 16:03:25 +02:00
|
|
|
if (not append)
|
2011-10-12 20:53:38 +02:00
|
|
|
move_cursor_to(iterator_at(cursor_position() + offset));
|
2011-09-28 16:23:43 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
for (auto& sel : m_selections)
|
|
|
|
{
|
2011-10-14 16:29:53 +02:00
|
|
|
DisplayCoord pos = line_and_column_at(sel.last());
|
2011-09-28 16:23:43 +02:00
|
|
|
sel = Selection(sel.first(), iterator_at(pos + offset));
|
|
|
|
}
|
2011-09-28 21:21:49 +02:00
|
|
|
scroll_to_keep_cursor_visible_ifn();
|
2011-09-28 16:23:43 +02:00
|
|
|
}
|
2011-09-22 16:00:04 +02:00
|
|
|
}
|
|
|
|
|
2011-10-12 20:53:38 +02:00
|
|
|
void Window::move_cursor_to(const BufferIterator& iterator)
|
2011-09-22 16:00:04 +02:00
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
m_selections.clear();
|
2011-10-12 20:53:38 +02:00
|
|
|
m_selections.push_back(Selection(iterator, iterator));
|
2011-09-05 20:54:17 +02:00
|
|
|
|
|
|
|
scroll_to_keep_cursor_visible_ifn();
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Window::update_display_buffer()
|
|
|
|
{
|
|
|
|
m_display_buffer.clear();
|
|
|
|
|
2011-09-28 22:54:11 +02:00
|
|
|
BufferIterator begin = m_buffer.iterator_at(m_position);
|
|
|
|
BufferIterator end = m_buffer.iterator_at(m_position +
|
|
|
|
BufferCoord(m_dimensions.line, m_dimensions.column+1));
|
2011-10-07 16:19:58 +02:00
|
|
|
if (begin == end)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_display_buffer.append(DisplayAtom(begin, end));
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-09-28 22:54:11 +02:00
|
|
|
for (auto& filter : m_filters)
|
2011-09-29 11:10:27 +02:00
|
|
|
{
|
2011-09-28 22:54:11 +02:00
|
|
|
filter(m_display_buffer);
|
2011-09-29 11:10:27 +02:00
|
|
|
m_display_buffer.check_invariant();
|
|
|
|
}
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
void Window::set_dimensions(const DisplayCoord& dimensions)
|
2011-09-05 20:54:17 +02:00
|
|
|
{
|
|
|
|
m_dimensions = dimensions;
|
|
|
|
}
|
|
|
|
|
2011-09-05 20:55:31 +02:00
|
|
|
void Window::scroll_to_keep_cursor_visible_ifn()
|
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
check_invariant();
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
DisplayCoord cursor = line_and_column_at(m_selections.back().last());
|
2011-09-27 20:45:22 +02:00
|
|
|
if (cursor.line < 0)
|
2011-09-05 20:55:31 +02:00
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
m_position.line = std::max(m_position.line + cursor.line, 0);
|
2011-09-05 20:55:31 +02:00
|
|
|
}
|
2011-09-27 20:45:22 +02:00
|
|
|
else if (cursor.line >= m_dimensions.line)
|
2011-09-05 20:55:31 +02:00
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
m_position.line += cursor.line - (m_dimensions.line - 1);
|
2011-09-05 20:55:31 +02:00
|
|
|
}
|
|
|
|
|
2011-09-27 20:45:22 +02:00
|
|
|
if (cursor.column < 0)
|
2011-09-05 20:55:31 +02:00
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
m_position.column = std::max(m_position.column + cursor.column, 0);
|
2011-09-05 20:55:31 +02:00
|
|
|
}
|
2011-09-27 20:45:22 +02:00
|
|
|
else if (cursor.column >= m_dimensions.column)
|
2011-09-05 20:55:31 +02:00
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
m_position.column += cursor.column - (m_dimensions.column - 1);
|
2011-09-05 20:55:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-04 20:49:41 +02:00
|
|
|
std::string Window::status_line() const
|
|
|
|
{
|
|
|
|
BufferCoord cursor = window_to_buffer(cursor_position());
|
|
|
|
std::ostringstream oss;
|
2011-10-05 16:21:24 +02:00
|
|
|
oss << m_buffer.name();
|
|
|
|
if (m_buffer.is_modified())
|
|
|
|
oss << " [+]";
|
|
|
|
oss << " -- " << cursor.line << "," << cursor.column
|
2011-10-04 20:49:41 +02:00
|
|
|
<< " -- " << m_selections.size() << " sel -- ";
|
2011-10-05 16:21:24 +02:00
|
|
|
if (m_current_inserter)
|
|
|
|
oss << "[Insert]";
|
2011-10-04 20:49:41 +02:00
|
|
|
return oss.str();
|
|
|
|
}
|
|
|
|
|
2011-09-28 21:14:39 +02:00
|
|
|
IncrementalInserter::IncrementalInserter(Window& window, Mode mode)
|
2011-09-19 23:56:29 +02:00
|
|
|
: m_window(window)
|
|
|
|
{
|
|
|
|
assert(not m_window.m_current_inserter);
|
|
|
|
m_window.m_current_inserter = this;
|
2011-09-27 20:45:22 +02:00
|
|
|
m_window.check_invariant();
|
2011-09-19 23:56:29 +02:00
|
|
|
|
2011-09-28 21:14:39 +02:00
|
|
|
m_window.m_buffer.begin_undo_group();
|
|
|
|
|
|
|
|
if (mode == Mode::Change)
|
|
|
|
window.erase_noundo();
|
|
|
|
|
2011-09-27 20:45:22 +02:00
|
|
|
for (auto& sel : m_window.m_selections)
|
2011-09-19 23:56:29 +02:00
|
|
|
{
|
2011-10-06 23:12:55 +02:00
|
|
|
BufferIterator pos;
|
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case Mode::Insert: pos = sel.begin(); break;
|
|
|
|
case Mode::Append: pos = sel.end(); break;
|
|
|
|
case Mode::Change: pos = sel.begin(); break;
|
|
|
|
|
|
|
|
case Mode::OpenLineBelow:
|
|
|
|
pos = sel.end();
|
|
|
|
while (not pos.is_end() and *pos != '\n')
|
|
|
|
++pos;
|
|
|
|
++pos;
|
|
|
|
window.m_buffer.insert(pos, "\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Mode::OpenLineAbove:
|
|
|
|
pos = sel.begin();
|
|
|
|
while (not pos.is_begin() and *pos != '\n')
|
|
|
|
--pos;
|
|
|
|
window.m_buffer.insert(pos, "\n");
|
|
|
|
++pos;
|
|
|
|
break;
|
|
|
|
}
|
2011-09-27 20:45:22 +02:00
|
|
|
sel = Selection(pos, pos);
|
2011-09-19 23:56:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IncrementalInserter::~IncrementalInserter()
|
|
|
|
{
|
|
|
|
assert(m_window.m_current_inserter == this);
|
|
|
|
m_window.m_current_inserter = nullptr;
|
|
|
|
|
|
|
|
m_window.m_buffer.end_undo_group();
|
|
|
|
}
|
|
|
|
|
|
|
|
void IncrementalInserter::insert(const Window::String& string)
|
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
m_window.insert_noundo(string);
|
2011-09-19 23:56:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IncrementalInserter::erase()
|
|
|
|
{
|
2011-10-14 16:29:53 +02:00
|
|
|
move_cursor(DisplayCoord(0, -1));
|
2011-09-27 20:45:22 +02:00
|
|
|
m_window.erase_noundo();
|
2011-09-19 23:56:29 +02:00
|
|
|
}
|
|
|
|
|
2011-10-14 16:29:53 +02:00
|
|
|
void IncrementalInserter::move_cursor(const DisplayCoord& offset)
|
2011-09-19 23:56:29 +02:00
|
|
|
{
|
2011-09-27 20:45:22 +02:00
|
|
|
for (auto& sel : m_window.m_selections)
|
2011-09-19 23:56:29 +02:00
|
|
|
{
|
2011-10-14 16:29:53 +02:00
|
|
|
DisplayCoord pos = m_window.line_and_column_at(sel.last());
|
2011-09-27 20:45:22 +02:00
|
|
|
BufferIterator it = m_window.iterator_at(pos + offset);
|
|
|
|
sel = Selection(it, it);
|
2011-09-19 23:56:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|