From da10ce817e2808ae16f5b1b7c1087c5c28caddaa Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Thu, 28 Oct 2021 09:13:34 +1100 Subject: [PATCH] Kakoune 2021.10.28 --- doc/pages/changelog.asciidoc | 5 +++++ src/main.cc | 3 +++ 2 files changed, 8 insertions(+) diff --git a/doc/pages/changelog.asciidoc b/doc/pages/changelog.asciidoc index f260caeae1..3bb3e6c1d7 100644 --- a/doc/pages/changelog.asciidoc +++ b/doc/pages/changelog.asciidoc @@ -3,6 +3,11 @@ This changelog contains major and/or breaking changes to Kakoune between released versions. +== Kakoune 2021.10.28 + +* `g` and `v` do not auto lower case the next key, so `GL` needs to be + manually mapped to `Gl` for example. + == Kakoune 2021.08.28 * command and response fifo support diff --git a/src/main.cc b/src/main.cc index dab271b4e6..7fa6070eac 100644 --- a/src/main.cc +++ b/src/main.cc @@ -44,6 +44,9 @@ struct { unsigned int version; StringView notes; } constexpr version_notes[] = { { + 20211028, + "» {+b}g{} and {+b}v{} do not auto-convert to lowercase anymore\n" + }, { 20210828, "» {+u}write {} will refuse to overwrite without {+u}-force{}\n" "» {+u}$kak_command_fifo{} support\n"