mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 23:18:33 +00:00

Problem: Cannot grep using fuzzy matching.
Solution: Add the "f" flag to :vimgrep. (Yegappan Lakshmanan, closes vim/vim#8152)
bb01a1ef3a
16 lines
323 B
C
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
|