From 67424aae1e00196faf303201544435b30b82b16d Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 24 Feb 2018 23:54:56 +1100 Subject: Remove avoidance of end of lines Various places in Kakoune code used to modify selections so that cursors would not lie on an end of line. Remove those to increase Kakoune's consistency and simplicity. Now that end of lines are highlighted separately, they should not be handled specially in most commands. --- src/input_handler.cc | 1 - 1 file changed, 1 deletion(-) (limited to 'src/input_handler.cc') diff --git a/src/input_handler.cc b/src/input_handler.cc index 3662e12f..752b642c 100644 --- a/src/input_handler.cc +++ b/src/input_handler.cc @@ -1095,7 +1095,6 @@ public: sel.cursor() = context().buffer().char_prev(sel.cursor()); } } - selections.avoid_eol(); } } -- cgit v1.2.3