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/ex_cmds.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/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index d26d3387f8..8a0f2e634a 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -2670,6 +2670,8 @@ int do_ecmd( msg_scrolled_ign = FALSE; } + curbuf->b_last_used = time(NULL); + if (command != NULL) do_cmdline(command, NULL, NULL, DOCMD_VERBOSE); |