aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_docmd.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-09 17:13:44 +0800
committerGitHub <noreply@github.com>2022-08-09 17:13:44 +0800
commitcd14efd281c260c92936f05bf5f91780f8912f81 (patch)
tree29b7778ae35f57f8c260f5e34dbb38a050929285 /src/nvim/ex_docmd.c
parenta5e846b9969b1dfbd7e92f437f3ac7905039b84f (diff)
downloadrneovim-cd14efd281c260c92936f05bf5f91780f8912f81.tar.gz
rneovim-cd14efd281c260c92936f05bf5f91780f8912f81.tar.bz2
rneovim-cd14efd281c260c92936f05bf5f91780f8912f81.zip
vim-patch:8.1.1823: command line history code is spread out (#19688)
Problem: Command line history code is spread out. Solution: Put the code in a new file. (Yegappan Lakshmanan, closes vim/vim#4779) Also graduate the +cmdline_hist feature. https://github.com/vim/vim/commit/d7663c22c6c1ff0f86b81371586fbc851d3a3e9e
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r--src/nvim/ex_docmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c
index 4ac9847e53..86c5489cf2 100644
--- a/src/nvim/ex_docmd.c
+++ b/src/nvim/ex_docmd.c
@@ -13,6 +13,7 @@
#include "nvim/buffer.h"
#include "nvim/change.h"
#include "nvim/charset.h"
+#include "nvim/cmdhist.h"
#include "nvim/cursor.h"
#include "nvim/debugger.h"
#include "nvim/diff.h"
@@ -601,10 +602,9 @@ int do_cmdline(char *cmdline, LineGetter fgetline, void *cookie, int flags)
if (next_cmdline == NULL) {
XFREE_CLEAR(cmdline_copy);
- //
+
// If the command was typed, remember it for the ':' register.
// Do this AFTER executing the command to make :@: work.
- //
if (getline_equal(fgetline, cookie, getexline)
&& new_last_cmdline != NULL) {
xfree(last_cmdline);