diff options
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index b0006ebaca..fb3aa91c85 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -638,6 +638,9 @@ EXTERN int motion_force INIT(=0); // motion force for pending operator EXTERN bool exmode_active INIT(= false); // true if Ex mode is active EXTERN bool ex_no_reprint INIT(=false); // No need to print after z or p. +// 'inccommand' command preview state +EXTERN bool cmdpreview INIT(= false); + EXTERN int reg_recording INIT(= 0); // register for recording or zero EXTERN int reg_executing INIT(= 0); // register being executed or zero // Flag set when peeking a character and found the end of executed register |