diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2023-11-29 22:39:54 +0000 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2023-11-29 22:39:54 +0000 |
commit | 21cb7d04c387e4198ca8098a884c78b56ffcf4c2 (patch) | |
tree | 84fe5690df1551f0bb2bdfe1a13aacd29ebc1de7 /src/nvim/path.h | |
parent | d9c904f85a23a496df4eb6be42aa43f007b22d50 (diff) | |
parent | 4a8bf24ac690004aedf5540fa440e788459e5e34 (diff) | |
download | rneovim-colorcolchar.tar.gz rneovim-colorcolchar.tar.bz2 rneovim-colorcolchar.zip |
Merge remote-tracking branch 'upstream/master' into colorcolcharcolorcolchar
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 |