summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-11-01 14:18:13 +0800
committerMaxime Coste <mawww@kakoune.org>2017-11-01 14:18:13 +0800
commit25dac6b24e74dcf259019e5ed6d44740487b99d0 (patch)
treeb8f21911efe051a33eeab454c03bd6e85cd8982f /src
parent09de0686efa981e6f915197c43aeef7ec2c4cbbc (diff)
Document the regex impl switch in the startup message
Diffstat (limited to 'src')
-rw-r--r--src/main.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.cc b/src/main.cc
index 35dd2518..883ed1ef 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -39,11 +39,13 @@ namespace Kakoune
static const char* startup_info =
"Kakoune recent breaking changes:\n"
-" * selection extending behaviour has been simplified, it now just\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";
+" 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";
struct startup_error : runtime_error
{