aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/drawscreen.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-09-30 12:05:28 +0800
committerGitHub <noreply@github.com>2023-09-30 12:05:28 +0800
commitcf8b2c0e74fd5e723b0c15c2ce84e6900fd322d3 (patch)
treebf9f5c708f7cc03513bf4af81bcacacd833912f5 /src/nvim/drawscreen.c
parent5f2d0b932907fc3814a2245e1beacd8a47aa256c (diff)
downloadrneovim-cf8b2c0e74fd5e723b0c15c2ce84e6900fd322d3.tar.gz
rneovim-cf8b2c0e74fd5e723b0c15c2ce84e6900fd322d3.tar.bz2
rneovim-cf8b2c0e74fd5e723b0c15c2ce84e6900fd322d3.zip
build(iwyu): add a few more _defs.h mappings (#25435)
Diffstat (limited to 'src/nvim/drawscreen.c')
-rw-r--r--src/nvim/drawscreen.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/drawscreen.c b/src/nvim/drawscreen.c
index 06e4cd48e7..a6614ffde5 100644
--- a/src/nvim/drawscreen.c
+++ b/src/nvim/drawscreen.c
@@ -56,7 +56,10 @@
#include <assert.h>
#include <inttypes.h>
+#include <limits.h>
#include <stdbool.h>
+#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include "klib/kvec.h"
@@ -77,6 +80,8 @@
#include "nvim/ex_getln.h"
#include "nvim/extmark_defs.h"
#include "nvim/fold.h"
+#include "nvim/getchar.h"
+#include "nvim/gettext.h"
#include "nvim/globals.h"
#include "nvim/grid.h"
#include "nvim/highlight.h"
@@ -89,6 +94,7 @@
#include "nvim/move.h"
#include "nvim/normal.h"
#include "nvim/option.h"
+#include "nvim/os/os_defs.h"
#include "nvim/plines.h"
#include "nvim/popupmenu.h"
#include "nvim/pos.h"
@@ -98,6 +104,7 @@
#include "nvim/spell.h"
#include "nvim/state.h"
#include "nvim/statusline.h"
+#include "nvim/strings.h"
#include "nvim/syntax.h"
#include "nvim/terminal.h"
#include "nvim/types.h"