From 9198de3ae2bd20ac51d580c44f2b43c282c1e773 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 27 Aug 2022 21:30:03 +0100 Subject: patch 9.0.0288: when 'cmdheight' is zero some messages are not displayed Problem: When 'cmdheight' is zero some messages are not displayed. Solution: Use a popup notification window. --- src/structs.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/structs.h') diff --git a/src/structs.h b/src/structs.h index fc44d23a6..091b886b2 100644 --- a/src/structs.h +++ b/src/structs.h @@ -2569,6 +2569,7 @@ struct timer_S proftime_T tr_due; // when the callback is to be invoked char tr_firing; // when TRUE callback is being called char tr_paused; // when TRUE callback is not invoked + char tr_keep; // when TRUE keep timer after it fired int tr_repeat; // number of times to repeat, -1 forever long tr_interval; // msec callback_T tr_callback; @@ -2605,6 +2606,7 @@ typedef enum { POPPOS_BOTRIGHT, POPPOS_TOPRIGHT, POPPOS_CENTER, + POPPOS_BOTTOM, // bottom of popup at bottom of screen POPPOS_NONE } poppos_T; -- cgit v1.2.1