mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 23:38:17 +00:00
13 lines
374 B
C
13 lines
374 B
C
#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
|