From 51eae8026b5e7a596ad3ec787ade96e8e78d7c33 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sun, 25 May 2014 22:59:29 +0100 Subject: Use SelectionList::insert in InputModes::Insert --- src/input_handler.cc | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) (limited to 'src/input_handler.cc') diff --git a/src/input_handler.cc b/src/input_handler.cc index 4c718c21..60cfb618 100644 --- a/src/input_handler.cc +++ b/src/input_handler.cc @@ -759,26 +759,13 @@ private: void insert(memoryview strings) { - auto& buffer = context().buffer(); - auto& selections = context().selections(); - for (size_t i = 0; i < selections.size(); ++i) - { - size_t index = selections.size() - 1 - i; - const String& str = strings[std::min(index, strings.size()-1)]; - buffer.insert(buffer.iterator_at(selections[index].cursor()), - str); - } - selections.update(); + context().selections().insert(strings, InsertMode::InsertCursor); } void insert(Codepoint key) { auto str = codepoint_to_str(key); - auto& buffer = context().buffer(); - auto& selections = context().selections(); - for (auto& sel : reversed(selections)) - buffer.insert(buffer.iterator_at(sel.cursor()), str); - selections.update(); + context().selections().insert(str, InsertMode::InsertCursor); context().hooks().run_hook("InsertChar", str, context()); } @@ -828,6 +815,7 @@ private: cursor = anchor; break; case InsertMode::InsertAtNextLineBegin: + case InsertMode::InsertCursor: kak_assert(false); // not implemented break; } -- cgit v1.2.3