From d4fa94c3564738f642027e352bdabb67f0bc2471 Mon Sep 17 00:00:00 2001 From: Francesco Magliocca Date: Mon, 4 Sep 2017 16:41:27 +0200 Subject: [PATCH] Rename env variable kak_curr_history_id to kak_history_id --- README.asciidoc | 2 +- doc/manpages/expansions.asciidoc | 2 +- src/main.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.asciidoc b/README.asciidoc index 00f618ad..2c96216a 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -792,7 +792,7 @@ Some of Kakoune state is available through environment variables: * `kak_buf_line_count`: the current buffer line count * `kak_timestamp`: timestamp of the current buffer, the timestamp is an integer value which is incremented each time the buffer is modified. - * `kak_curr_history_id`: history id of the current buffer, the history id is an integer value + * `kak_history_id`: history id of the current buffer, the history id is an integer value which is used to reference a specific buffer version in the undo tree * `kak_runtime`: directory containing the kak binary * `kak_count`: count parameter passed to the command diff --git a/doc/manpages/expansions.asciidoc b/doc/manpages/expansions.asciidoc index 3f01bb84..72f6daa3 100644 --- a/doc/manpages/expansions.asciidoc +++ b/doc/manpages/expansions.asciidoc @@ -74,7 +74,7 @@ informations about Kakoune's state: *kak_timestamp*:: timestamp of the current buffer, the timestamp is an integer value which is incremented each time the buffer is modified -*kak_curr_history_id*:: +*kak_history_id*:: history id of the current buffer, the history id is an integer value which is used to reference a specific buffer version in the undo tree *kak_runtime*:: diff --git a/src/main.cc b/src/main.cc index 79a55965..bcedab05 100644 --- a/src/main.cc +++ b/src/main.cc @@ -94,7 +94,7 @@ void register_env_vars() [](StringView name, const Context& context) -> String { return to_string(context.buffer().timestamp()); } }, { - "curr_history_id", false, + "history_id", false, [](StringView name, const Context& context) -> String { return to_string(context.buffer().current_history_id()); } }, {