Kakoune v2020.10.16

This commit is contained in:
Maxime Coste 2020-01-16 20:52:01 +11:00
parent 5f126ee267
commit 9ca479ed40
3 changed files with 10 additions and 3 deletions

View File

@ -3,11 +3,14 @@
This changelog contains major and/or breaking changes to Kakoune between
released versions.
== Development version
== Kakoune v2020.01.16
* Expose history tree through `$kak_history` and
`$kak_uncommitted_modifications`
* `InsertCompletionHide` parameter is the list of inserted
ranges
== Kakoune 2019.12.10
* Arrow keys and `<home>`, `<end>` are not normal mode commands

View File

@ -164,8 +164,9 @@ name. Hooks with no description will always use an empty string.
Triggered when the insert completion menu gets displayed
*InsertCompletionHide* `completion`::
Triggered when the insert completion menu gets hidden, the inserted
completion text is passed as filtering text.
Triggered when the insert completion menu gets hidden, the list of
inserted completions text ranges is passed as filtering text, in the
same format the `select` command expects.
*RawKey* `key`::
Triggered whenever a key is pressed by the user, regardless of what mode

View File

@ -44,6 +44,9 @@ struct {
unsigned int version;
StringView notes;
} constexpr version_notes[] = { {
20200116,
"» {+u}InsertCompletionHide{} parameter is now the list of inserted ranges"
}, {
20191210,
"» {+u}ModeChange{} parameter has changed to contain push/pop "
"{+ui}Mode{+u}Begin{}/{+ui}Mode{+u}End{} hooks were removed\n"