diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-06-06 14:00:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 20:00:32 +0800 |
commit | f5d12889e80d3369359b8248806694cf6d21f820 (patch) | |
tree | 8c3c03b9cb4a6806956d5bf6b87e9ff4a0cf24d2 /src/nvim/buffer_defs.h | |
parent | 7b973c71ea845c9bcc6d98e101ad5a7956cb5802 (diff) | |
download | rneovim-f5d12889e80d3369359b8248806694cf6d21f820.tar.gz rneovim-f5d12889e80d3369359b8248806694cf6d21f820.tar.bz2 rneovim-f5d12889e80d3369359b8248806694cf6d21f820.zip |
refactor: adjust headers according to the style guide (#23934)
System headers should be included first to prevent naming conflicts.
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index e3e457cea6..d92d425ed5 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -18,6 +18,7 @@ typedef struct { #include "klib/kvec.h" #include "nvim/api/private/defs.h" #include "nvim/eval/typval_defs.h" +#include "nvim/extmark_defs.h" #include "nvim/garray.h" #include "nvim/grid_defs.h" #include "nvim/hashtab.h" @@ -25,9 +26,6 @@ typedef struct { #include "nvim/map.h" #include "nvim/mark_defs.h" #include "nvim/marktree.h" -// for float window title -#include "nvim/extmark_defs.h" -// for click definitions #include "nvim/option_defs.h" #include "nvim/pos.h" #include "nvim/statusline_defs.h" |