mirror of
https://github.com/neovim/neovim.git
synced 2025-10-03 08:28:34 +00:00
refactor: fix runtime_defs.h (#26259)
This commit is contained in:
@@ -3,13 +3,15 @@
|
||||
#include "nvim/eval/typval_defs.h" // IWYU pragma: keep
|
||||
#include "nvim/ex_cmds_defs.h" // IWYU pragma: keep
|
||||
#include "nvim/option_defs.h" // IWYU pragma: keep
|
||||
#include "nvim/pos_defs.h"
|
||||
#include "nvim/types_defs.h"
|
||||
#include "nvim/pos_defs.h" // IWYU pragma: keep
|
||||
#include "nvim/types_defs.h" // IWYU pragma: keep
|
||||
|
||||
// flags for skip_vimgrep_pat()
|
||||
#define VGR_GLOBAL 1
|
||||
#define VGR_NOJUMP 2
|
||||
#define VGR_FUZZY 4
|
||||
/// flags for skip_vimgrep_pat()
|
||||
enum {
|
||||
VGR_GLOBAL = 1,
|
||||
VGR_NOJUMP = 2,
|
||||
VGR_FUZZY = 4,
|
||||
};
|
||||
|
||||
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
||||
# include "quickfix.h.generated.h"
|
||||
|
Reference in New Issue
Block a user