aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.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/buffer.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/buffer.c')
-rw-r--r--src/nvim/buffer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 1ff0140162..ab5b32bf3e 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -34,6 +34,7 @@
#include "nvim/change.h"
#include "nvim/channel.h"
#include "nvim/charset.h"
+#include "nvim/cmdexpand.h"
#include "nvim/cursor.h"
#include "nvim/decoration.h"
#include "nvim/diff.h"