diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-04-26 23:57:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-26 23:57:37 -0400 |
commit | 34ad1ea36637845adb14c579587168126d3210e3 (patch) | |
tree | 7342478885db7348b3925739f5a0320b48121102 /src/nvim/eval.c | |
parent | 5f41717838f4cd9d1087e452640ba554500279ab (diff) | |
parent | 978a6bcaf2b98b3c89381a3eacf642b4f61db033 (diff) | |
download | rneovim-34ad1ea36637845adb14c579587168126d3210e3.tar.gz rneovim-34ad1ea36637845adb14c579587168126d3210e3.tar.bz2 rneovim-34ad1ea36637845adb14c579587168126d3210e3.zip |
Merge #12155 ':ls filter by terminal, lastused'
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 12b13a1f08..bcdb4a18f1 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -7241,6 +7241,8 @@ dict_T *get_buffer_info(buf_T *buf) tv_dict_add_list(dict, S_LEN("signs"), get_buffer_signs(buf)); } + tv_dict_add_nr(dict, S_LEN("lastused"), buf->b_last_used); + return dict; } |