diff options
author | Lewis Russell <lewis6991@gmail.com> | 2022-03-22 22:31:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 06:31:50 +0800 |
commit | 7863e6b709976d53d69b8495f1ab4417d965f4b3 (patch) | |
tree | 486780f066cc80cffb5daf95101871c586b6a2af /src/nvim/eval/funcs.c | |
parent | f63a52a0db936d04bdc65c121f7bd279709d4cf2 (diff) | |
download | rneovim-7863e6b709976d53d69b8495f1ab4417d965f4b3.tar.gz rneovim-7863e6b709976d53d69b8495f1ab4417d965f4b3.tar.bz2 rneovim-7863e6b709976d53d69b8495f1ab4417d965f4b3.zip |
vim-patch:8.2.1078: highlight and match functionality together in one file (#17805)
Problem: Highlight and match functionality together in one file.
Solution: Move match functionality to a separate file. (Yegappan Lakshmanan,
closes vim/vim#6352)
https://github.com/vim/vim/commit/06cf97e714fd8bf9b35ff5f8a6f2302c79acdd03
Diffstat (limited to 'src/nvim/eval/funcs.c')
-rw-r--r-- | src/nvim/eval/funcs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval/funcs.c b/src/nvim/eval/funcs.c index 69055db9a6..41b419c150 100644 --- a/src/nvim/eval/funcs.c +++ b/src/nvim/eval/funcs.c @@ -39,6 +39,7 @@ #include "nvim/lua/executor.h" #include "nvim/macros.h" #include "nvim/mark.h" +#include "nvim/match.h" #include "nvim/math.h" #include "nvim/memline.h" #include "nvim/mouse.h" |