summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancesco Magliocca <franciman12@gmail.com>2017-09-04 16:41:27 +0200
committerFrancesco Magliocca <franciman12@gmail.com>2017-09-04 16:41:27 +0200
commitd4fa94c3564738f642027e352bdabb67f0bc2471 (patch)
tree32a6484508a6302e1bf7e84b636a0a922561754c
parenta903824ca6071c2edbdac02a532af96063ee6d74 (diff)
Rename env variable kak_curr_history_id to kak_history_id
-rw-r--r--README.asciidoc2
-rw-r--r--doc/manpages/expansions.asciidoc2
-rw-r--r--src/main.cc2
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()); }
}, {