From 8bb0f44c2b1e45f8d62680e07029a39e4f0d9385 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Thu, 9 May 2024 20:15:32 +1000 Subject: [PATCH] Kakoune 2024.05.09 --- doc/pages/changelog.asciidoc | 4 +++- src/main.cc | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/pages/changelog.asciidoc b/doc/pages/changelog.asciidoc index 5afd0d17..4b0857ff 100644 --- a/doc/pages/changelog.asciidoc +++ b/doc/pages/changelog.asciidoc @@ -3,7 +3,7 @@ This changelog contains major and/or breaking changes to Kakoune between released versions. -== Development version +== Kakoune 2024.05.09 * `flag-lines -after` switch to display text after the line @@ -28,6 +28,8 @@ released versions. * The `terminal` alias has been replaced with a command that selects terminal program and placement based on windowing options. +* `local` scopes in `commands` and `evaluate-commands`. + == Kakoune 2023.08.08 * Fix compilation errors on FreeBSD and MacOS using clang diff --git a/src/main.cc b/src/main.cc index 98181601..e0044db0 100644 --- a/src/main.cc +++ b/src/main.cc @@ -45,7 +45,7 @@ struct { unsigned int version; StringView notes; } constexpr version_notes[] = { { - 0, + 20240509, "» {+u}flag-lines -after{} highlighter\n" "» asynchronous {+u}shell-script-candidates{} completion\n" "» {+b}%val\\{window_range}{} is now emitted as separate strings\n" @@ -56,6 +56,7 @@ struct { "» {+u}git blame{} works in {+u}git-diff{} and {+u}git-log{} buffers\n" "» custom completions are no longer sorted if the typed text is empty\n" "» {+u}terminal{} now selects implementation based on windowing options\n" + "» {+u}local{} scopes\n" }, { 20230805, "» Fix FreeBSD/MacOS clang compilation\n"