diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-21 06:33:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 06:33:24 +0800 |
commit | 0d0a336c5348c653376766d90a86f187167ae5c5 (patch) | |
tree | c2c47b69d3dca8361aff8038a12102ed2db81db2 /src/nvim/buffer.c | |
parent | ff5cfcdeab2446459ab59d44ce173ef811902c49 (diff) | |
download | rneovim-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.c | 1 |
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" |