diff options
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -1533,7 +1533,8 @@ int vim_memcmp __ARGS((void *, void *, size_t)); #define VV_INSERTMODE 33 #define VV_VAL 34 #define VV_KEY 35 -#define VV_LEN 36 /* number of v: vars */ +#define VV_PROFILING 36 +#define VV_LEN 37 /* number of v: vars */ #ifdef FEAT_CLIPBOARD @@ -1620,6 +1621,12 @@ typedef int VimClipboard; /* This is required for the prototypes. */ # endif #endif +#ifdef FEAT_PROFILE +typedef struct timeval proftime_T; +#else +typedef int proftime_T; /* dummy for function prototypes */ +#endif + #include "option.h" /* option variables and defines */ #include "ex_cmds.h" /* Ex command defines */ #include "proto.h" /* function prototypes */ @@ -1865,4 +1872,8 @@ typedef int VimClipboard; /* This is required for the prototypes. */ # define handle_signal(x) 0 #endif +/* flags for skip_vimgrep_pat() */ +#define VGR_GLOBAL 1 +#define VGR_NOJUMP 2 + #endif /* VIM__H */ |