mirror of
https://github.com/neovim/neovim.git
synced 2026-06-17 17:21:16 +00:00
gen_vimdoc.lua: In prepare for the upcoming release, comment-out the "Experimental" warning for prerelease features.
28 lines
861 B
C
28 lines
861 B
C
#pragma once
|
|
|
|
#include <stddef.h> // IWYU pragma: keep
|
|
|
|
#include "nvim/pos_defs.h" // IWYU pragma: keep
|
|
#include "nvim/types_defs.h" // IWYU pragma: keep
|
|
#include "nvim/vim_defs.h" // IWYU pragma: keep
|
|
|
|
/// Flags for find_file_*() functions.
|
|
enum {
|
|
FINDFILE_FILE = 0, ///< only files
|
|
FINDFILE_DIR = 1, ///< only directories
|
|
FINDFILE_BOTH = 2, ///< files and directories
|
|
};
|
|
|
|
/// Values for file_name_in_line()
|
|
enum {
|
|
FNAME_MESS = 1, ///< give error message
|
|
FNAME_EXP = 2, ///< expand to path
|
|
FNAME_HYP = 4, ///< check for hyperlink url ("foo://")
|
|
FNAME_INCL = 8, ///< apply 'includeexpr'
|
|
FNAME_REL = 16, ///< ".." and "./" are relative to the (current)
|
|
///< file instead of the current directory
|
|
FNAME_UNESC = 32, ///< remove backslashes used for escaping
|
|
};
|
|
|
|
#include "file_search.h.generated.h"
|