aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/window.c
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2022-03-22 22:31:50 +0000
committerGitHub <noreply@github.com>2022-03-23 06:31:50 +0800
commit7863e6b709976d53d69b8495f1ab4417d965f4b3 (patch)
tree486780f066cc80cffb5daf95101871c586b6a2af /src/nvim/window.c
parentf63a52a0db936d04bdc65c121f7bd279709d4cf2 (diff)
downloadrneovim-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/window.c')
-rw-r--r--src/nvim/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c
index 50a56056bf..e0d657af45 100644
--- a/src/nvim/window.c
+++ b/src/nvim/window.c
@@ -25,9 +25,9 @@
#include "nvim/getchar.h"
#include "nvim/globals.h"
#include "nvim/hashtab.h"
-#include "nvim/highlight_group.h"
#include "nvim/main.h"
#include "nvim/mark.h"
+#include "nvim/match.h"
#include "nvim/memline.h"
#include "nvim/memory.h"
#include "nvim/message.h"