summaryrefslogtreecommitdiff
path: root/src/normal.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2016-07-27 23:53:16 +0100
committerMaxime Coste <frrrwww@gmail.com>2016-07-27 23:53:16 +0100
commit623fcd88ea57bbaa8458b0529efe22caf14f1ed0 (patch)
tree6079d64dabc47555734f94871ab95d03e0b5856a /src/normal.cc
parent14198fadb408e7a49bf1180174184aa2bdfbc669 (diff)
Do not avoid end of lines after selecting modified ranges in undo
Fixes #751
Diffstat (limited to 'src/normal.cc')
-rw-r--r--src/normal.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/normal.cc b/src/normal.cc
index 67937351..31afeb90 100644
--- a/src/normal.cc
+++ b/src/normal.cc
@@ -1431,7 +1431,6 @@ void undo(Context& context, NormalParams params)
auto ranges = compute_modified_ranges(buffer, timestamp);
if (not ranges.empty())
context.selections_write_only() = std::move(ranges);
- context.selections().avoid_eol();
}
else
context.print_status({ "nothing left to undo", get_face("Information") });
@@ -1446,7 +1445,6 @@ void redo(Context& context, NormalParams params)
auto ranges = compute_modified_ranges(buffer, timestamp);
if (not ranges.empty())
context.selections_write_only() = std::move(ranges);
- context.selections().avoid_eol();
}
else
context.print_status({ "nothing left to redo", get_face("Information") });