diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-27 09:51:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 09:51:26 +0800 |
commit | 09541d514dd18bf86f673d3784d406236fcbdad8 (patch) | |
tree | a719e36a3161d84714cd2f5e6e70f21f5410fb5c /src/nvim/highlight.h | |
parent | 7e2387f41be7cd8304fe48bfa089f2bea155dd5a (diff) | |
download | rneovim-09541d514dd18bf86f673d3784d406236fcbdad8.tar.gz rneovim-09541d514dd18bf86f673d3784d406236fcbdad8.tar.bz2 rneovim-09541d514dd18bf86f673d3784d406236fcbdad8.zip |
build(IWYU): replace public-to-public mappings with pragmas (#26237)
Diffstat (limited to 'src/nvim/highlight.h')
-rw-r--r-- | src/nvim/highlight.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/nvim/highlight.h b/src/nvim/highlight.h index 9c3a07d7ab..9212c96bcc 100644 --- a/src/nvim/highlight.h +++ b/src/nvim/highlight.h @@ -3,10 +3,9 @@ #include <stdbool.h> #include "nvim/api/keysets.h" -#include "nvim/api/private/defs.h" -#include "nvim/buffer_defs.h" -#include "nvim/highlight_defs.h" -#include "nvim/option_defs.h" +#include "nvim/api/private/defs.h" // IWYU pragma: keep +#include "nvim/buffer_defs.h" // IWYU pragma: keep +#include "nvim/highlight_defs.h" // IWYU pragma: export #include "nvim/option_vars.h" #include "nvim/ui.h" |