Editor::{select,move_cursor} takes a enum SelectMode parameter instead of a boolean

This commit is contained in:
Maxime Coste 2012-09-07 14:29:29 +02:00
parent 1e18dcba0f
commit 287628ec19
3 changed files with 62 additions and 51 deletions

View File

@ -111,13 +111,14 @@ void Editor::pop_selections()
throw runtime_error("no more selections on stack"); throw runtime_error("no more selections on stack");
} }
void Editor::move_selections(const BufferCoord& offset, bool append) void Editor::move_selections(const BufferCoord& offset, SelectMode mode)
{ {
assert(mode == SelectMode::Replace or mode == SelectMode::Extend);
for (auto& sel : m_selections.back()) for (auto& sel : m_selections.back())
{ {
BufferCoord pos = m_buffer.line_and_column_at(sel.last()); BufferCoord pos = m_buffer.line_and_column_at(sel.last());
BufferIterator last = m_buffer.iterator_at(pos + offset, true); BufferIterator last = m_buffer.iterator_at(pos + offset, true);
sel = Selection(append ? sel.first() : last, last); sel = Selection(mode == SelectMode::Extend ? sel.first() : last, last);
} }
} }
@ -160,7 +161,7 @@ void Editor::select(const BufferIterator& iterator)
m_selections.back().push_back(Selection(iterator, iterator)); m_selections.back().push_back(Selection(iterator, iterator));
} }
void Editor::select(const Selector& selector, bool append) void Editor::select(const Selector& selector, SelectMode mode)
{ {
check_invariant(); check_invariant();
@ -170,7 +171,7 @@ void Editor::select(const Selector& selector, bool append)
for (auto& sel : m_selections.back()) for (auto& sel : m_selections.back())
{ {
SelectionAndCaptures res = selector(sel); SelectionAndCaptures res = selector(sel);
if (append) if (mode == SelectMode::Extend)
sel.merge_with(res.selection); sel.merge_with(res.selection);
else else
sel = std::move(res.selection); sel = std::move(res.selection);

View File

@ -13,6 +13,13 @@ namespace Kakoune
class Register; class Register;
enum class SelectMode
{
Replace,
Extend,
Append,
};
// An Editor is a buffer mutator // An Editor is a buffer mutator
// //
// The Editor class provides methods to manipulate a set of selections // The Editor class provides methods to manipulate a set of selections
@ -23,6 +30,7 @@ public:
typedef std::function<SelectionAndCaptures (const Selection&)> Selector; typedef std::function<SelectionAndCaptures (const Selection&)> Selector;
typedef std::function<SelectionAndCapturesList (const Selection&)> MultiSelector; typedef std::function<SelectionAndCapturesList (const Selection&)> MultiSelector;
Editor(Buffer& buffer); Editor(Buffer& buffer);
virtual ~Editor() {} virtual ~Editor() {}
@ -42,12 +50,14 @@ public:
void push_selections(); void push_selections();
void pop_selections(); void pop_selections();
void move_selections(const BufferCoord& offset, bool append = false); void move_selections(const BufferCoord& offset,
SelectMode mode = SelectMode::Replace);
void clear_selections(); void clear_selections();
void keep_selection(int index); void keep_selection(int index);
void remove_selection(int index); void remove_selection(int index);
void select(const BufferIterator& iterator); void select(const BufferIterator& iterator);
void select(const Selector& selector, bool append = false); void select(const Selector& selector,
SelectMode mode = SelectMode::Replace);
void multi_select(const MultiSelector& selector); void multi_select(const MultiSelector& selector);
const SelectionList& selections() const { return m_selections.back(); } const SelectionList& selections() const { return m_selections.back(); }

View File

@ -43,7 +43,7 @@ void do_repeat_insert(Context& context)
context.client().repeat_last_insert(context.editor(), context); context.client().repeat_last_insert(context.editor(), context);
} }
template<bool append> template<SelectMode mode>
void do_go(Context& context) void do_go(Context& context)
{ {
int count = context.numeric_param(); int count = context.numeric_param();
@ -70,11 +70,11 @@ void do_go(Context& context)
break; break;
case 'l': case 'l':
case 'L': case 'L':
editor.select(select_to_eol, append); editor.select(select_to_eol, mode);
break; break;
case 'h': case 'h':
case 'H': case 'H':
editor.select(select_to_eol_reverse, append); editor.select(select_to_eol_reverse, mode);
break; break;
case 'b': case 'b':
{ {
@ -108,7 +108,7 @@ void do_pipe(Context& context)
} }
template<bool append> template<SelectMode mode>
void do_search(Context& context) void do_search(Context& context)
{ {
context.client().prompt("/", complete_nothing, context.client().prompt("/", complete_nothing,
@ -119,16 +119,16 @@ void do_search(Context& context)
else else
RegisterManager::instance()['/'] = ex; RegisterManager::instance()['/'] = ex;
context.editor().select(std::bind(select_next_match, _1, ex), append); context.editor().select(std::bind(select_next_match, _1, ex), mode);
}); });
} }
template<bool append> template<SelectMode mode>
void do_search_next(Context& context) void do_search_next(Context& context)
{ {
const String& ex = RegisterManager::instance()['/'].values(context)[0]; const String& ex = RegisterManager::instance()['/'].values(context)[0];
if (not ex.empty()) if (not ex.empty())
context.editor().select(std::bind(select_next_match, _1, ex), append); context.editor().select(std::bind(select_next_match, _1, ex), mode);
else else
context.print_status("no search pattern"); context.print_status("no search pattern");
} }
@ -201,7 +201,7 @@ void do_join(Context& context)
{ {
Editor& editor = context.editor(); Editor& editor = context.editor();
editor.select(select_whole_lines); editor.select(select_whole_lines);
editor.select(select_to_eol, true); editor.select(select_to_eol, SelectMode::Extend);
editor.multi_select(std::bind(select_all_matches, _1, "\n\\h*")); editor.multi_select(std::bind(select_all_matches, _1, "\n\\h*"));
editor.replace(" "); editor.replace(" ");
editor.clear_selections(); editor.clear_selections();
@ -254,14 +254,14 @@ private:
template<typename T> template<typename T>
Repeated<T> repeated(T func) { return Repeated<T>(func); } Repeated<T> repeated(T func) { return Repeated<T>(func); }
namespace SelectMode namespace SelectFlags
{ {
enum Flags enum Type
{ {
None = 0, None = 0,
Reverse = 1, Reverse = 1,
Inclusive = 2, Inclusive = 2,
Append = 4 Extend = 4
}; };
} }
@ -271,9 +271,9 @@ void select_to_next_char(Context& context)
int param = context.numeric_param(); int param = context.numeric_param();
context.client().on_next_key([param](const Key& key, Context& context) { context.client().on_next_key([param](const Key& key, Context& context) {
context.editor().select( context.editor().select(
std::bind(flags & SelectMode::Reverse ? select_to_reverse : select_to, std::bind(flags & SelectFlags::Reverse ? select_to_reverse : select_to,
_1, key.key, param, flags & SelectMode::Inclusive), _1, key.key, param, flags & SelectFlags::Inclusive),
flags & SelectMode::Append); flags & SelectFlags::Extend ? SelectMode::Extend : SelectMode::Replace);
}); });
} }
@ -284,19 +284,19 @@ std::unordered_map<Key, std::function<void (Context& context)>> keymap =
{ { Key::Modifiers::None, 'k' }, [](Context& context) { context.editor().move_selections({ -std::max(context.numeric_param(),1), 0 }); } }, { { Key::Modifiers::None, 'k' }, [](Context& context) { context.editor().move_selections({ -std::max(context.numeric_param(),1), 0 }); } },
{ { Key::Modifiers::None, 'l' }, [](Context& context) { context.editor().move_selections({ 0, std::max(context.numeric_param(),1) }); } }, { { Key::Modifiers::None, 'l' }, [](Context& context) { context.editor().move_selections({ 0, std::max(context.numeric_param(),1) }); } },
{ { Key::Modifiers::None, 'H' }, [](Context& context) { context.editor().move_selections({ 0, -std::max(context.numeric_param(),1) }, true); } }, { { Key::Modifiers::None, 'H' }, [](Context& context) { context.editor().move_selections({ 0, -std::max(context.numeric_param(),1) }, SelectMode::Extend); } },
{ { Key::Modifiers::None, 'J' }, [](Context& context) { context.editor().move_selections({ std::max(context.numeric_param(),1), 0 }, true); } }, { { Key::Modifiers::None, 'J' }, [](Context& context) { context.editor().move_selections({ std::max(context.numeric_param(),1), 0 }, SelectMode::Extend); } },
{ { Key::Modifiers::None, 'K' }, [](Context& context) { context.editor().move_selections({ -std::max(context.numeric_param(),1), 0 }, true); } }, { { Key::Modifiers::None, 'K' }, [](Context& context) { context.editor().move_selections({ -std::max(context.numeric_param(),1), 0 }, SelectMode::Extend); } },
{ { Key::Modifiers::None, 'L' }, [](Context& context) { context.editor().move_selections({ 0, std::max(context.numeric_param(),1) }, true); } }, { { Key::Modifiers::None, 'L' }, [](Context& context) { context.editor().move_selections({ 0, std::max(context.numeric_param(),1) }, SelectMode::Extend); } },
{ { Key::Modifiers::None, 't' }, select_to_next_char<SelectMode::None> }, { { Key::Modifiers::None, 't' }, select_to_next_char<SelectFlags::None> },
{ { Key::Modifiers::None, 'f' }, select_to_next_char<SelectMode::Inclusive> }, { { Key::Modifiers::None, 'f' }, select_to_next_char<SelectFlags::Inclusive> },
{ { Key::Modifiers::None, 'T' }, select_to_next_char<SelectMode::Append> }, { { Key::Modifiers::None, 'T' }, select_to_next_char<SelectFlags::Extend> },
{ { Key::Modifiers::None, 'F' }, select_to_next_char<SelectMode::Inclusive | SelectMode::Append> }, { { Key::Modifiers::None, 'F' }, select_to_next_char<SelectFlags::Inclusive | SelectFlags::Extend> },
{ { Key::Modifiers::Alt, 't' }, select_to_next_char<SelectMode::Reverse> }, { { Key::Modifiers::Alt, 't' }, select_to_next_char<SelectFlags::Reverse> },
{ { Key::Modifiers::Alt, 'f' }, select_to_next_char<SelectMode::Inclusive | SelectMode::Reverse> }, { { Key::Modifiers::Alt, 'f' }, select_to_next_char<SelectFlags::Inclusive | SelectFlags::Reverse> },
{ { Key::Modifiers::Alt, 'T' }, select_to_next_char<SelectMode::Append | SelectMode::Reverse> }, { { Key::Modifiers::Alt, 'T' }, select_to_next_char<SelectFlags::Extend | SelectFlags::Reverse> },
{ { Key::Modifiers::Alt, 'F' }, select_to_next_char<SelectMode::Inclusive | SelectMode::Append | SelectMode::Reverse> }, { { Key::Modifiers::Alt, 'F' }, select_to_next_char<SelectFlags::Inclusive | SelectFlags::Extend | SelectFlags::Reverse> },
{ { Key::Modifiers::None, 'd' }, do_erase }, { { Key::Modifiers::None, 'd' }, do_erase },
{ { Key::Modifiers::None, 'c' }, do_change }, { { Key::Modifiers::None, 'c' }, do_change },
@ -307,8 +307,8 @@ std::unordered_map<Key, std::function<void (Context& context)>> keymap =
{ { Key::Modifiers::None, 'o' }, do_insert<IncrementalInserter::Mode::OpenLineBelow> }, { { Key::Modifiers::None, 'o' }, do_insert<IncrementalInserter::Mode::OpenLineBelow> },
{ { Key::Modifiers::None, 'O' }, do_insert<IncrementalInserter::Mode::OpenLineAbove> }, { { Key::Modifiers::None, 'O' }, do_insert<IncrementalInserter::Mode::OpenLineAbove> },
{ { Key::Modifiers::None, 'g' }, do_go<false> }, { { Key::Modifiers::None, 'g' }, do_go<SelectMode::Replace> },
{ { Key::Modifiers::None, 'G' }, do_go<true> }, { { Key::Modifiers::None, 'G' }, do_go<SelectMode::Extend> },
{ { Key::Modifiers::None, 'y' }, do_yank }, { { Key::Modifiers::None, 'y' }, do_yank },
{ { Key::Modifiers::None, 'p' }, do_paste<PasteMode::After> }, { { Key::Modifiers::None, 'p' }, do_paste<PasteMode::After> },
@ -332,18 +332,18 @@ std::unordered_map<Key, std::function<void (Context& context)>> keymap =
{ { Key::Modifiers::None, 'w' }, repeated([](Context& context) { context.editor().select(select_to_next_word<false>); }) }, { { Key::Modifiers::None, 'w' }, repeated([](Context& context) { context.editor().select(select_to_next_word<false>); }) },
{ { Key::Modifiers::None, 'e' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<false>); }) }, { { Key::Modifiers::None, 'e' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<false>); }) },
{ { Key::Modifiers::None, 'b' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<false>); }) }, { { Key::Modifiers::None, 'b' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<false>); }) },
{ { Key::Modifiers::None, 'W' }, repeated([](Context& context) { context.editor().select(select_to_next_word<false>, true); }) }, { { Key::Modifiers::None, 'W' }, repeated([](Context& context) { context.editor().select(select_to_next_word<false>, SelectMode::Extend); }) },
{ { Key::Modifiers::None, 'E' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<false>, true); }) }, { { Key::Modifiers::None, 'E' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<false>, SelectMode::Extend); }) },
{ { Key::Modifiers::None, 'B' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<false>, true); }) }, { { Key::Modifiers::None, 'B' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<false>, SelectMode::Extend); }) },
{ { Key::Modifiers::None, 'x' }, repeated([](Context& context) { context.editor().select(select_line, false); }) }, { { Key::Modifiers::None, 'x' }, repeated([](Context& context) { context.editor().select(select_line, SelectMode::Replace); }) },
{ { Key::Modifiers::None, 'X' }, repeated([](Context& context) { context.editor().select(select_line, true); }) }, { { Key::Modifiers::None, 'X' }, repeated([](Context& context) { context.editor().select(select_line, SelectMode::Extend); }) },
{ { Key::Modifiers::None, 'm' }, [](Context& context) { context.editor().select(select_matching); } }, { { Key::Modifiers::None, 'm' }, [](Context& context) { context.editor().select(select_matching); } },
{ { Key::Modifiers::None, 'M' }, [](Context& context) { context.editor().select(select_matching, true); } }, { { Key::Modifiers::None, 'M' }, [](Context& context) { context.editor().select(select_matching, SelectMode::Extend); } },
{ { Key::Modifiers::None, '/' }, do_search<false> }, { { Key::Modifiers::None, '/' }, do_search<SelectMode::Replace> },
{ { Key::Modifiers::None, '?' }, do_search<true> }, { { Key::Modifiers::None, '?' }, do_search<SelectMode::Extend> },
{ { Key::Modifiers::None, 'n' }, do_search_next<false> }, { { Key::Modifiers::None, 'n' }, do_search_next<SelectMode::Replace> },
{ { Key::Modifiers::None, 'N' }, do_search_next<true> }, { { Key::Modifiers::None, 'N' }, do_search_next<SelectMode::Extend> },
{ { Key::Modifiers::None, 'u' }, repeated([](Context& context) { if (not context.editor().undo()) { context.print_status("nothing left to undo"); } }) }, { { Key::Modifiers::None, 'u' }, repeated([](Context& context) { if (not context.editor().undo()) { context.print_status("nothing left to undo"); } }) },
{ { Key::Modifiers::None, 'U' }, repeated([](Context& context) { if (not context.editor().redo()) { context.print_status("nothing left to redo"); } }) }, { { Key::Modifiers::None, 'U' }, repeated([](Context& context) { if (not context.editor().redo()) { context.print_status("nothing left to redo"); } }) },
@ -354,14 +354,14 @@ std::unordered_map<Key, std::function<void (Context& context)>> keymap =
{ { Key::Modifiers::Alt, 'w' }, repeated([](Context& context) { context.editor().select(select_to_next_word<true>); }) }, { { Key::Modifiers::Alt, 'w' }, repeated([](Context& context) { context.editor().select(select_to_next_word<true>); }) },
{ { Key::Modifiers::Alt, 'e' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<true>); }) }, { { Key::Modifiers::Alt, 'e' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<true>); }) },
{ { Key::Modifiers::Alt, 'b' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<true>); }) }, { { Key::Modifiers::Alt, 'b' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<true>); }) },
{ { Key::Modifiers::Alt, 'W' }, repeated([](Context& context) { context.editor().select(select_to_next_word<true>, true); }) }, { { Key::Modifiers::Alt, 'W' }, repeated([](Context& context) { context.editor().select(select_to_next_word<true>, SelectMode::Extend); }) },
{ { Key::Modifiers::Alt, 'E' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<true>, true); }) }, { { Key::Modifiers::Alt, 'E' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<true>, SelectMode::Extend); }) },
{ { Key::Modifiers::Alt, 'B' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<true>, true); }) }, { { Key::Modifiers::Alt, 'B' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<true>, SelectMode::Extend); }) },
{ { Key::Modifiers::Alt, 'l' }, repeated([](Context& context) { context.editor().select(select_to_eol, false); }) }, { { Key::Modifiers::Alt, 'l' }, repeated([](Context& context) { context.editor().select(select_to_eol, SelectMode::Replace); }) },
{ { Key::Modifiers::Alt, 'L' }, repeated([](Context& context) { context.editor().select(select_to_eol, true); }) }, { { Key::Modifiers::Alt, 'L' }, repeated([](Context& context) { context.editor().select(select_to_eol, SelectMode::Extend); }) },
{ { Key::Modifiers::Alt, 'h' }, repeated([](Context& context) { context.editor().select(select_to_eol_reverse, false); }) }, { { Key::Modifiers::Alt, 'h' }, repeated([](Context& context) { context.editor().select(select_to_eol_reverse, SelectMode::Replace); }) },
{ { Key::Modifiers::Alt, 'H' }, repeated([](Context& context) { context.editor().select(select_to_eol_reverse, true); }) }, { { Key::Modifiers::Alt, 'H' }, repeated([](Context& context) { context.editor().select(select_to_eol_reverse, SelectMode::Extend); }) },
{ { Key::Modifiers::Alt, 's' }, do_split_regex }, { { Key::Modifiers::Alt, 's' }, do_split_regex },