blob: 833a1a05ff87da4f7515cc1ddb258f5020075fa0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef NVIM_FILE_SEARCH_H
#define NVIM_FILE_SEARCH_H
/* Flags for find_file_*() functions. */
#define FINDFILE_FILE 0 /* only files */
#define FINDFILE_DIR 1 /* only directories */
#define FINDFILE_BOTH 2 /* files and directories */
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "file_search.h.generated.h"
#endif
#endif // NVIM_FILE_SEARCH_H
|