diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-09-27 16:19:15 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-10-05 20:12:59 +0200 |
commit | 6ae144a92171cf9ae52bddddc3a081a4efaabe9f (patch) | |
tree | d8d62f23bf7e0d673c9f13a206e03a7d930a3d6c /src/nvim/ex_getln.c | |
parent | cce0840cbfc3c4ee9ae1d3fc9b283d557d0204ab (diff) | |
download | rneovim-6ae144a92171cf9ae52bddddc3a081a4efaabe9f.tar.gz rneovim-6ae144a92171cf9ae52bddddc3a081a4efaabe9f.tar.bz2 rneovim-6ae144a92171cf9ae52bddddc3a081a4efaabe9f.zip |
feat(messages)!: graduate the 'msgsep' feature
The old behaviour (e.g. via `set display-=msgsep`) will not be available.
Assuming that messages always are being drawn on msg_grid
(or not drawn at all, and forwarded to `ext_messages` enabled UI)
will allows some simplifcations and enhancements moving forward.
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index d1d0fe3f2a..6883dc5b14 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -775,7 +775,7 @@ static uint8_t *command_line_enter(int firstc, long count, int indent, bool init // Redraw the statusline in case it uses the current mode using the mode() // function. - if (!cmd_silent && (msg_scrolled == 0 || msg_use_msgsep())) { + if (!cmd_silent) { bool found_one = false; FOR_ALL_WINDOWS_IN_TAB(wp, curtab) { |