From 56dd5f9540d752b4af4e252aaf0cdfe1ab3c90a0 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Mon, 9 Feb 2015 21:09:17 +0000 Subject: Fix selecting of insert text in SelectionList::insert --- src/selection.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/selection.cc b/src/selection.cc index 91527080..936e8144 100644 --- a/src/selection.cc +++ b/src/selection.cc @@ -499,8 +499,11 @@ void SelectionList::insert(ArrayView strings, InsertMode mode, if (select_inserted or mode == InsertMode::Replace) { - sel.min() = change.begin; - sel.max() = m_buffer->char_prev(change.end); + // we want min and max from *before* we do any change + auto& min = sel.min(); + auto& max = sel.max(); + min = change.begin; + max = m_buffer->char_prev(change.end); } else { -- cgit v1.2.3