diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2016-07-20 20:29:45 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2016-07-24 21:25:05 +0100 |
| commit | 087a17eb24059da1a98596bb5c8e9064a72776f4 (patch) | |
| tree | 39d252b0bed06ecd9db6e0ac5e704ae7424f948d /src/buffer.cc | |
| parent | 03a4b3c73ff8cf7d37387df8bd0fcf9e895b59e0 (diff) | |
Support for going backward/forward in buffer history with <a-u>/<a-U>
Diffstat (limited to 'src/buffer.cc')
| -rw-r--r-- | src/buffer.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/buffer.cc b/src/buffer.cc index 028f9516..ec970676 100644 --- a/src/buffer.cc +++ b/src/buffer.cc @@ -425,6 +425,11 @@ bool Buffer::move_to(size_t history_id) noexcept return true; } +size_t Buffer::current_history_id() const noexcept +{ + return m_history_cursor->id; +} + void Buffer::check_invariant() const { #ifdef KAK_DEBUG |
