diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-26 15:34:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-26 22:34:29 +0800 |
commit | 34509bbea3e8c6a8033911aea645b1b5579f7d1a (patch) | |
tree | a7a12ee95e71dfc73e1b06fa40469b030323ad1b /src/nvim | |
parent | ce6075f82a2a8ff9c3e2d0074e1cd56457e5507f (diff) | |
download | rneovim-34509bbea3e8c6a8033911aea645b1b5579f7d1a.tar.gz rneovim-34509bbea3e8c6a8033911aea645b1b5579f7d1a.tar.bz2 rneovim-34509bbea3e8c6a8033911aea645b1b5579f7d1a.zip |
build: sync IWYU and clint to ignore the same headers (#26228)
Also fix headers for autocmd.c.
Diffstat (limited to 'src/nvim')
-rw-r--r-- | src/nvim/autocmd.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/nvim/autocmd.c b/src/nvim/autocmd.c index 65e902ed4b..80c9ad9465 100644 --- a/src/nvim/autocmd.c +++ b/src/nvim/autocmd.c @@ -4,34 +4,36 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <time.h> #include "nvim/api/private/helpers.h" #include "nvim/ascii.h" #include "nvim/autocmd.h" #include "nvim/buffer.h" #include "nvim/charset.h" +#include "nvim/cmdexpand_defs.h" #include "nvim/cursor.h" #include "nvim/eval.h" #include "nvim/eval/typval.h" #include "nvim/eval/userfunc.h" #include "nvim/eval/vars.h" +#include "nvim/event/multiqueue.h" #include "nvim/ex_docmd.h" #include "nvim/ex_eval.h" #include "nvim/fileio.h" -#include "nvim/garray.h" #include "nvim/getchar.h" #include "nvim/gettext.h" +#include "nvim/globals.h" #include "nvim/grid.h" #include "nvim/hashtab.h" #include "nvim/highlight_defs.h" #include "nvim/insexpand.h" #include "nvim/lua/executor.h" +#include "nvim/main.h" #include "nvim/map.h" -#include "nvim/memline_defs.h" #include "nvim/memory.h" #include "nvim/message.h" #include "nvim/option.h" +#include "nvim/option_vars.h" #include "nvim/optionstr.h" #include "nvim/os/input.h" #include "nvim/os/os.h" |