aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r--src/nvim/globals.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h
index 68b2640aa5..0b5fafd7c0 100644
--- a/src/nvim/globals.h
+++ b/src/nvim/globals.h
@@ -756,9 +756,11 @@ EXTERN bool KeyTyped; // true if user typed current char
EXTERN int KeyStuffed; // TRUE if current char from stuffbuf
EXTERN int maptick INIT(= 0); // tick for each non-mapped char
-EXTERN int must_redraw INIT(= 0); /* type of redraw necessary */
-EXTERN int skip_redraw INIT(= FALSE); /* skip redraw once */
-EXTERN int do_redraw INIT(= FALSE); /* extra redraw once */
+EXTERN int must_redraw INIT(= 0); // type of redraw necessary
+EXTERN bool skip_redraw INIT(= false); // skip redraw once
+EXTERN bool do_redraw INIT(= false); // extra redraw once
+EXTERN bool must_redraw_pum INIT(= false); // redraw pum. NB: must_redraw
+ // should also be set.
EXTERN int need_highlight_changed INIT(= true);