From 6176a19520515cbf3ad00efc558fb459547f029b Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 23 Aug 2017 07:00:37 +0700 Subject: [PATCH] Update startup info Remove old breaking changes, add selection extending behaviour change. --- src/main.cc | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/main.cc b/src/main.cc index c2d41dfe..33263227 100644 --- a/src/main.cc +++ b/src/main.cc @@ -39,18 +39,13 @@ namespace Kakoune static const char* startup_info = "Kakoune recent breaking changes:\n" -" * Renamed range-faces/line-flags option types to range-specs/line-specs\n" -" range-specs can be used by the new replace-range highlighter.\n" -" A new update-option command can be used to update the line/ranges\n" -" according to buffer modification\n" -" * and are not append to/from register anymore but\n" -" combine from/to register.\n" -" * `*` will now strip surrounding whitespaces from the selection\n" " * lint/grep/make next/prev commands have been renamed to more\n" " explicit names (lint-next-error, grep-previous-match, ...)\n" " * ctags commands have been renamed to use the ctags- prefix\n" " * completion_extra_word_char option is now extra_word_chars (note the\n" -" plural form) and is used for word selection commands\n"; +" plural form) and is used for word selection commands\n" +" * selection extending behaviour has been simplified, it now just\n" +" maintain the current anchor and moves the cursor,\n"; struct startup_error : runtime_error {