aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-09-01 20:25:36 +0200
committerGitHub <noreply@github.com>2019-09-01 20:25:36 +0200
commit9df3a676e7f2302929061a6c0edf42e5fb3f3873 (patch)
tree75b58a88ca69022a6e893e337c39e283d5577452 /src/nvim/buffer.c
parent2f37c243482eec20fe52f298368c02eca21c758f (diff)
parent14615f7f67664cd63410999c2cd13ee50ed14571 (diff)
downloadrneovim-9df3a676e7f2302929061a6c0edf42e5fb3f3873.tar.gz
rneovim-9df3a676e7f2302929061a6c0edf42e5fb3f3873.tar.bz2
rneovim-9df3a676e7f2302929061a6c0edf42e5fb3f3873.zip
Merge pull request #10400 from bfredl/msg_grid
Dedicated message grid.
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 3ccbb4efdd..382b4c45c1 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -2654,8 +2654,7 @@ 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();
}
}