aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lua/executor.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-21 06:33:24 +0800
committerGitHub <noreply@github.com>2022-08-21 06:33:24 +0800
commit0d0a336c5348c653376766d90a86f187167ae5c5 (patch)
treec2c47b69d3dca8361aff8038a12102ed2db81db2 /src/nvim/lua/executor.c
parentff5cfcdeab2446459ab59d44ce173ef811902c49 (diff)
downloadrneovim-0d0a336c5348c653376766d90a86f187167ae5c5.tar.gz
rneovim-0d0a336c5348c653376766d90a86f187167ae5c5.tar.bz2
rneovim-0d0a336c5348c653376766d90a86f187167ae5c5.zip
vim-patch:8.1.1886: command line expansion code is spread out (#19861)
Problem: Command line expansion code is spread out. Solution: Move the code to cmdexpand.c. (Yegappan Lakshmanan, closes vim/vim#4831) https://github.com/vim/vim/commit/66b51420e0c8d49bcf6786b792c938d6099e3393
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r--src/nvim/lua/executor.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c
index 5d97f90bb1..38c19ed456 100644
--- a/src/nvim/lua/executor.c
+++ b/src/nvim/lua/executor.c
@@ -22,6 +22,7 @@
#include "nvim/eval/userfunc.h"
#include "nvim/event/loop.h"
#include "nvim/event/time.h"
+#include "nvim/ex_cmds.h"
#include "nvim/ex_getln.h"
#include "nvim/extmark.h"
#include "nvim/func_attr.h"