diff --git a/doc/pages/changelog.asciidoc b/doc/pages/changelog.asciidoc index c53ea8cf..2e096221 100644 --- a/doc/pages/changelog.asciidoc +++ b/doc/pages/changelog.asciidoc @@ -7,6 +7,9 @@ released versions. * Re-organized bundled script files directory hierarchy. +* Introduced helpers to write/read from file in scripts with + `%file{...}` expansion and `echo -to-file `. + == Kakoune 2019.01.20 * `auto_complete` has been renamed to `autocomplete` for more diff --git a/src/main.cc b/src/main.cc index 8c33629f..6b533003 100644 --- a/src/main.cc +++ b/src/main.cc @@ -44,6 +44,10 @@ struct { unsigned int version; const char* notes; } constexpr version_notes[] = { { + 0, + "» %file{...} expansions to read files\n" + "» echo -to-file to write to file\n" + }, { 20190120, "» named capture groups in regex\n" "» auto_complete option renamed to autocomplete\n"