summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-10-28 12:30:53 +0800
committerMaxime Coste <mawww@kakoune.org>2017-10-28 13:43:04 +0800
commit7064e890f5923bf3fed9700af423c268eeafd9a5 (patch)
treefa1718de03d2df6302fafd088a12cb0d5d84cde3 /src
parentd49555fc7568cff0db385d019a68cfdb0f28f8b0 (diff)
Update breaking changes message
Diffstat (limited to 'src')
-rw-r--r--src/main.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/main.cc b/src/main.cc
index 9de42b48..35dd2518 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -39,14 +39,11 @@ namespace Kakoune
static const char* startup_info =
"Kakoune recent breaking changes:\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"
" * 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";
+" * 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";
struct startup_error : runtime_error
{