diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2023-11-30 20:35:25 +0000 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2023-11-30 20:35:25 +0000 |
commit | 1b7b916b7631ddf73c38e3a0070d64e4636cb2f3 (patch) | |
tree | cd08258054db80bb9a11b1061bb091c70b76926a /src/nvim/path.h | |
parent | eaa89c11d0f8aefbb512de769c6c82f61a8baca3 (diff) | |
parent | 4a8bf24ac690004aedf5540fa440e788459e5e34 (diff) | |
download | rneovim-aucmd_textputpost.tar.gz rneovim-aucmd_textputpost.tar.bz2 rneovim-aucmd_textputpost.zip |
Merge remote-tracking branch 'upstream/master' into aucmd_textputpostaucmd_textputpost
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 |