diff options
-rw-r--r-- | src/nvim/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 3ccbb4efdd..2cc9643b7e 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -2654,9 +2654,9 @@ void buflist_list(exarg_T *eap) buf == curbuf ? (int64_t)curwin->w_cursor.lnum : (int64_t)buflist_findlnum(buf)); msg_outtrans(IObuff); - ui_flush(); // output one line at a time - os_breakcheck(); + line_breakcheck(); } + ui_flush(); } /* |