Document the regex impl switch in the startup message

This commit is contained in:
Maxime Coste 2017-11-01 14:18:13 +08:00
parent 09de0686ef
commit 25dac6b24e

View File

@ -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
{