aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vimscript.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/api/vimscript.c
parentd85e9935f262965bdccc71f80ce58b2e11acbd59 (diff)
downloadrneovim-79b6ff28ad1204fbb4199b9092f5c578d88cb28e.tar.gz
rneovim-79b6ff28ad1204fbb4199b9092f5c578d88cb28e.tar.bz2
rneovim-79b6ff28ad1204fbb4199b9092f5c578d88cb28e.zip
refactor: fix headers with IWYU
Diffstat (limited to 'src/nvim/api/vimscript.c')
-rw-r--r--src/nvim/api/vimscript.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/vimscript.c b/src/nvim/api/vimscript.c
index 233da2dd9f..c75bf21572 100644
--- a/src/nvim/api/vimscript.c
+++ b/src/nvim/api/vimscript.c
@@ -10,7 +10,7 @@
#include "nvim/api/private/defs.h"
#include "nvim/api/private/helpers.h"
#include "nvim/api/vimscript.h"
-#include "nvim/ascii.h"
+#include "nvim/ascii_defs.h"
#include "nvim/eval.h"
#include "nvim/eval/typval.h"
#include "nvim/eval/userfunc.h"
@@ -20,7 +20,7 @@
#include "nvim/globals.h"
#include "nvim/memory.h"
#include "nvim/runtime.h"
-#include "nvim/vim.h"
+#include "nvim/vim_defs.h"
#include "nvim/viml/parser/expressions.h"
#include "nvim/viml/parser/parser.h"