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/normal.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/normal.c')
| -rw-r--r-- | src/nvim/normal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 58993426dd..76de60cf4f 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -1260,6 +1260,8 @@ static void normal_redraw(NormalState *s) maketitle(); } + curbuf->b_last_used = time(NULL); + // Display message after redraw. If an external message is still visible, // it contains the kept message already. if (keep_msg != NULL && !msg_ext_is_visible()) { |