aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/message.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r--src/nvim/message.c87
1 files changed, 58 insertions, 29 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c
index 2643d644a9..097c8b16e4 100644
--- a/src/nvim/message.c
+++ b/src/nvim/message.c
@@ -1759,12 +1759,11 @@ static void msg_puts_display(const char_u *str, int maxlen, int attr,
}
inc_msg_scrolled();
- need_wait_return = TRUE; /* may need wait_return in main() */
- if (must_redraw < VALID)
- must_redraw = VALID;
- redraw_cmdline = TRUE;
- if (cmdline_row > 0 && !exmode_active)
- --cmdline_row;
+ need_wait_return = true; // may need wait_return in main()
+ redraw_cmdline = true;
+ if (cmdline_row > 0 && !exmode_active) {
+ cmdline_row--;
+ }
/*
* If screen is completely filled and 'more' is set then wait
@@ -1921,30 +1920,38 @@ static void inc_msg_scrolled(void)
xfree(tofree);
}
msg_scrolled++;
+ if (must_redraw < VALID) {
+ must_redraw = VALID;
+ }
}
-static msgchunk_T *last_msgchunk = NULL; /* last displayed text */
+static msgchunk_T *last_msgchunk = NULL; // last displayed text
+typedef enum {
+ SB_CLEAR_NONE = 0,
+ SB_CLEAR_ALL,
+ SB_CLEAR_CMDLINE_BUSY,
+ SB_CLEAR_CMDLINE_DONE
+} sb_clear_T;
-static int do_clear_sb_text = FALSE; /* clear text on next msg */
+// When to clear text on next msg.
+static sb_clear_T do_clear_sb_text = SB_CLEAR_NONE;
-/*
- * Store part of a printed message for displaying when scrolling back.
- */
-static void
-store_sb_text (
- char_u **sb_str, /* start of string */
- char_u *s, /* just after string */
+/// Store part of a printed message for displaying when scrolling back.
+static void store_sb_text(
+ char_u **sb_str, // start of string
+ char_u *s, // just after string
int attr,
int *sb_col,
- int finish /* line ends */
+ int finish // line ends
)
{
msgchunk_T *mp;
- if (do_clear_sb_text) {
- clear_sb_text();
- do_clear_sb_text = FALSE;
+ if (do_clear_sb_text == SB_CLEAR_ALL
+ || do_clear_sb_text == SB_CLEAR_CMDLINE_DONE) {
+ clear_sb_text(do_clear_sb_text == SB_CLEAR_ALL);
+ do_clear_sb_text = SB_CLEAR_NONE;
}
if (s > *sb_str) {
@@ -1976,21 +1983,43 @@ store_sb_text (
*/
void may_clear_sb_text(void)
{
- do_clear_sb_text = TRUE;
+ do_clear_sb_text = SB_CLEAR_ALL;
}
-/*
- * Clear any text remembered for scrolling back.
- * Called when redrawing the screen.
- */
-void clear_sb_text(void)
+/// Starting to edit the command line, do not clear messages now.
+void sb_text_start_cmdline(void)
+{
+ do_clear_sb_text = SB_CLEAR_CMDLINE_BUSY;
+ msg_sb_eol();
+}
+
+/// Ending to edit the command line. Clear old lines but the last one later.
+void sb_text_end_cmdline(void)
+{
+ do_clear_sb_text = SB_CLEAR_CMDLINE_DONE;
+}
+
+/// Clear any text remembered for scrolling back.
+/// When "all" is FALSE keep the last line.
+/// Called when redrawing the screen.
+void clear_sb_text(int all)
{
msgchunk_T *mp;
+ msgchunk_T **lastp;
+
+ if (all) {
+ lastp = &last_msgchunk;
+ } else {
+ if (last_msgchunk == NULL) {
+ return;
+ }
+ lastp = &last_msgchunk->sb_prev;
+ }
- while (last_msgchunk != NULL) {
- mp = last_msgchunk->sb_prev;
- xfree(last_msgchunk);
- last_msgchunk = mp;
+ while (*lastp != NULL) {
+ mp = (*lastp)->sb_prev;
+ xfree(*lastp);
+ *lastp = mp;
}
}