Files
neovim/src/nvim/quickfix.h
Sean Dewar ce797e08f5 vim-patch:8.2.2813: cannot grep using fuzzy matching
Problem:    Cannot grep using fuzzy matching.
Solution:   Add the "f" flag to :vimgrep. (Yegappan Lakshmanan, closes vim/vim#8152)
bb01a1ef3a
2022-02-07 17:20:51 +00:00

16 lines
323 B
C

#ifndef NVIM_QUICKFIX_H
#define NVIM_QUICKFIX_H
#include "nvim/ex_cmds_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
#endif // NVIM_QUICKFIX_H