aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/regexp.c
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2023-11-28 20:31:00 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2023-11-28 22:23:56 +0100
commit79b6ff28ad1204fbb4199b9092f5c578d88cb28e (patch)
tree22761f60f4dcb209598c960420d958c1fa5e1481 /src/nvim/regexp.c
parentd85e9935f262965bdccc71f80ce58b2e11acbd59 (diff)
downloadrneovim-79b6ff28ad1204fbb4199b9092f5c578d88cb28e.tar.gz
rneovim-79b6ff28ad1204fbb4199b9092f5c578d88cb28e.tar.bz2
rneovim-79b6ff28ad1204fbb4199b9092f5c578d88cb28e.zip
refactor: fix headers with IWYU
Diffstat (limited to 'src/nvim/regexp.c')
-rw-r--r--src/nvim/regexp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/regexp.c b/src/nvim/regexp.c
index 3e6c7c159b..3536196a3b 100644
--- a/src/nvim/regexp.c
+++ b/src/nvim/regexp.c
@@ -15,7 +15,7 @@
#include <string.h>
#include <sys/types.h>
-#include "nvim/ascii.h"
+#include "nvim/ascii_defs.h"
#include "nvim/buffer_defs.h"
#include "nvim/charset.h"
#include "nvim/eval.h"
@@ -26,7 +26,7 @@
#include "nvim/gettext.h"
#include "nvim/globals.h"
#include "nvim/keycodes.h"
-#include "nvim/macros.h"
+#include "nvim/macros_defs.h"
#include "nvim/mark.h"
#include "nvim/mbyte.h"
#include "nvim/memline.h"
@@ -41,7 +41,7 @@
#include "nvim/regexp_defs.h"
#include "nvim/strings.h"
#include "nvim/types_defs.h"
-#include "nvim/vim.h"
+#include "nvim/vim_defs.h"
// Structure used to save the current input state, when it needs to be
// restored after trying a match. Used by reg_save() and reg_restore().