mirror of
https://github.com/neovim/neovim.git
synced 2025-10-21 17:21:49 +00:00

- Move vimoption_T to option.h - option_defs.h is for option-related types - option_vars.h corresponds to Vim's option.h - option_defs.h and option_vars.h don't include each other
17 lines
353 B
C
17 lines
353 B
C
#ifndef NVIM_QUICKFIX_H
|
|
#define NVIM_QUICKFIX_H
|
|
|
|
#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
|
|
#endif // NVIM_QUICKFIX_H
|