diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-10-14 14:55:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-14 14:55:01 +0800 |
commit | 8ee8112b92425cec6c8b3053e73a858148c3b9fe (patch) | |
tree | 741aa03b9f0d2edc53c210f5b9bebba251c8d9fb /src/nvim/api/vim.c | |
parent | ce0f80835a5f6febd64f4ce5cf245d476ebaecfd (diff) | |
parent | 13f55750e9bea8ec8f50550546edc64a0f0964d8 (diff) | |
download | rneovim-8ee8112b92425cec6c8b3053e73a858148c3b9fe.tar.gz rneovim-8ee8112b92425cec6c8b3053e73a858148c3b9fe.tar.bz2 rneovim-8ee8112b92425cec6c8b3053e73a858148c3b9fe.zip |
Merge pull request #25630 from nwounkn/fix-extra-line
fix(ui): empty line before the next message after :silent command
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index ce3eca52b5..6ce1f41e39 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -1744,7 +1744,9 @@ static void write_msg(String message, bool to_err, bool writeln) } else { \ msg(line_buf->items, 0); \ } \ - msg_didout = true; \ + if (msg_silent == 0) { \ + msg_didout = true; \ + } \ kv_drop(*line_buf, kv_size(*line_buf)); \ kv_resize(*line_buf, LINE_BUFFER_MIN_SIZE); \ } else if (c == NUL) { \ |