Skip to content

Commit

Permalink
Kakoune v2020.10.16
Browse files Browse the repository at this point in the history
  • Loading branch information
mawww committed Jan 16, 2020
1 parent 5f126ee commit 9ca479e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion doc/pages/changelog.asciidoc
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions doc/pages/hooks.asciidoc
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions src/main.cc
Expand Up @@ -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"
Expand Down

0 comments on commit 9ca479e

Please sign in to comment.