diff options
Diffstat (limited to 'src/nvim/eval/window.h')
-rw-r--r-- | src/nvim/eval/window.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/nvim/eval/window.h b/src/nvim/eval/window.h index 995f0a55a9..ed879c895a 100644 --- a/src/nvim/eval/window.h +++ b/src/nvim/eval/window.h @@ -1,5 +1,4 @@ -#ifndef NVIM_EVAL_WINDOW_H -#define NVIM_EVAL_WINDOW_H +#pragma once #include <stdbool.h> #include <string.h> @@ -11,9 +10,10 @@ #include "nvim/globals.h" #include "nvim/mark.h" #include "nvim/option_defs.h" -#include "nvim/os/os.h" -#include "nvim/pos.h" -#include "nvim/vim.h" +#include "nvim/option_vars.h" +#include "nvim/os/fs.h" +#include "nvim/pos_defs.h" +#include "nvim/vim_defs.h" #include "nvim/window.h" /// Structure used by switch_win() to pass values to restore_win() @@ -75,4 +75,3 @@ typedef struct { #ifdef INCLUDE_GENERATED_DECLARATIONS # include "eval/window.h.generated.h" #endif -#endif // NVIM_EVAL_WINDOW_H |