aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/tag.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/tag.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/tag.c')
-rw-r--r--src/nvim/tag.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c
index 5866f11aab..65c56bf01b 100644
--- a/src/nvim/tag.c
+++ b/src/nvim/tag.c
@@ -13,6 +13,7 @@
#include "nvim/ascii.h"
#include "nvim/buffer.h"
#include "nvim/charset.h"
+#include "nvim/cmdexpand.h"
#include "nvim/cursor.h"
#include "nvim/drawscreen.h"
#include "nvim/edit.h"