blob: e406679dcb156450f4e5b4594b3a5e2efc57019c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "nvim/ex_cmds_defs.h"
#include "nvim/option_defs.h"
#include "nvim/types.h"
// flags for skip_vimgrep_pat()
#define VGR_GLOBAL 1
#define VGR_NOJUMP 2
#define VGR_FUZZY 4
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "quickfix.h.generated.h"
#endif
|