diff options
author | dundargoc <gocdundar@gmail.com> | 2023-11-25 11:32:32 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-25 17:41:33 +0100 |
commit | a827003e3052c6d9ee7bdb71518182e9bd76317d (patch) | |
tree | c1b6276a2c74bfc1f190f518e7d098c78e99b3b9 /src/nvim/sign.c | |
parent | 03b7d35b5485b6a66bcd92027e43c838766bb205 (diff) | |
download | rneovim-a827003e3052c6d9ee7bdb71518182e9bd76317d.tar.gz rneovim-a827003e3052c6d9ee7bdb71518182e9bd76317d.tar.bz2 rneovim-a827003e3052c6d9ee7bdb71518182e9bd76317d.zip |
build: rework IWYU mapping files
Create mapping to most of the C spec and some POSIX specific functions.
This is more robust than relying files shipped with IWYU.
Diffstat (limited to 'src/nvim/sign.c')
-rw-r--r-- | src/nvim/sign.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nvim/sign.c b/src/nvim/sign.c index 243e9e57cf..af7b2ca5df 100644 --- a/src/nvim/sign.c +++ b/src/nvim/sign.c @@ -1,18 +1,24 @@ // sign.c: functions for managing with signs +#include <assert.h> #include <inttypes.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include "klib/kvec.h" #include "nvim/api/extmark.h" +#include "nvim/api/private/defs.h" +#include "nvim/api/private/helpers.h" #include "nvim/ascii.h" #include "nvim/buffer.h" #include "nvim/buffer_defs.h" #include "nvim/charset.h" #include "nvim/cmdexpand_defs.h" #include "nvim/cursor.h" +#include "nvim/decoration.h" +#include "nvim/decoration_defs.h" #include "nvim/drawscreen.h" #include "nvim/edit.h" #include "nvim/eval/funcs.h" @@ -26,6 +32,8 @@ #include "nvim/highlight_defs.h" #include "nvim/highlight_group.h" #include "nvim/macros.h" +#include "nvim/map.h" +#include "nvim/marktree.h" #include "nvim/mbyte.h" #include "nvim/memory.h" #include "nvim/message.h" |