1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-11 13:00:41 +03:00

Kakoune 2024.05.09

This commit is contained in:
Maxime Coste 2024-05-09 20:15:32 +10:00
parent 1c71fc0c09
commit 8bb0f44c2b
2 changed files with 5 additions and 2 deletions

View File

@ -3,7 +3,7 @@
This changelog contains major and/or breaking changes to Kakoune between This changelog contains major and/or breaking changes to Kakoune between
released versions. released versions.
== Development version == Kakoune 2024.05.09
* `flag-lines -after` switch to display text after the line * `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. * 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 == Kakoune 2023.08.08
* Fix compilation errors on FreeBSD and MacOS using clang * Fix compilation errors on FreeBSD and MacOS using clang

View File

@ -45,7 +45,7 @@ struct {
unsigned int version; unsigned int version;
StringView notes; StringView notes;
} constexpr version_notes[] = { { } constexpr version_notes[] = { {
0, 20240509,
"» {+u}flag-lines -after{} highlighter\n" "» {+u}flag-lines -after{} highlighter\n"
"» asynchronous {+u}shell-script-candidates{} completion\n" "» asynchronous {+u}shell-script-candidates{} completion\n"
"» {+b}%val\\{window_range}{} is now emitted as separate strings\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" "» {+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" "» custom completions are no longer sorted if the typed text is empty\n"
"» {+u}terminal{} now selects implementation based on windowing options\n" "» {+u}terminal{} now selects implementation based on windowing options\n"
"» {+u}local{} scopes\n"
}, { }, {
20230805, 20230805,
"» Fix FreeBSD/MacOS clang compilation\n" "» Fix FreeBSD/MacOS clang compilation\n"