diff options
Diffstat (limited to 'src/nvim/path.h')
-rw-r--r-- | src/nvim/path.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/nvim/path.h b/src/nvim/path.h index c8d192dffe..89f939dd02 100644 --- a/src/nvim/path.h +++ b/src/nvim/path.h @@ -1,9 +1,10 @@ -#ifndef NVIM_PATH_H -#define NVIM_PATH_H +#pragma once + +#include <stddef.h> // IWYU pragma: keep #include "nvim/func_attr.h" -#include "nvim/garray.h" -#include "nvim/types.h" +#include "nvim/garray_defs.h" // IWYU pragma: keep +#include "nvim/types_defs.h" // IWYU pragma: keep // Flags for expand_wildcards() #define EW_DIR 0x01 // include directory names @@ -26,6 +27,7 @@ #define EW_DODOT 0x4000 // also files starting with a dot #define EW_EMPTYOK 0x8000 // no matches is not an error #define EW_NOTENV 0x10000 // do not expand environment variables +#define EW_NOBREAK 0x20000 // do not invoke breakcheck /// Return value for the comparison of two files. Also @see path_full_compare. typedef enum file_comparison { @@ -39,4 +41,3 @@ typedef enum file_comparison { #ifdef INCLUDE_GENERATED_DECLARATIONS # include "path.h.generated.h" #endif -#endif // NVIM_PATH_H |