From 171e78706325df34afd95e3582c88b419b9e9313 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 24 Feb 2018 21:58:35 +1100 Subject: [PATCH] Update startup message to notify about h/l change --- src/main.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main.cc b/src/main.cc index e37db1e7..40712901 100644 --- a/src/main.cc +++ b/src/main.cc @@ -39,16 +39,14 @@ namespace Kakoune static const char* startup_info = "Kakoune recent breaking changes:\n" -" * Selection extending behaviour has been simplified, it now just\n" -" maintain the current anchor and moves the cursor,\n" -" * Custom text objects are bound to 'c' instead of ':'\n" " * Highlighters have been refactored to be part of scopes\n" " the add-highlighter and remove-highlighter command syntax changed.\n" " * Regex implementation switched to a custom one, the syntax is slightly\n" " less tolerant.\n" " * ModeChange hook has been introduced and is expected to replace\n" " the various ${MODE}Begin/${MODE}End hooks, consider those deprecated.\n" -" * '*' Does not strip whitespaces anymore\n"; +" * '*' Does not strip whitespaces anymore, use built-in _ to strip them\n" +" * 'l' on eol will go to next line, 'h' on first char will go to previous\n"; struct startup_error : runtime_error {