Mercurial > vim
diff src/channel.c @ 26466:d413104a94c8 v8.2.3763
patch 8.2.3763: when editing the cmdline a callback may cause a scroll up
Commit: https://github.com/vim/vim/commit/e50507126f532a0b0ae65e201a6372b7ea5b0ccd
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 9 10:51:05 2021 +0000
patch 8.2.3763: when editing the cmdline a callback may cause a scroll up
Problem: When editing the command line a FocusLost callback may cause the
screen to scroll up.
Solution: Do not redraw at the last line but at the same place where the
command line was before. (closes #9295)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 09 Dec 2021 12:00:05 +0100 |
parents | b18f3b0f317c |
children | bce848ec8b1b |
line wrap: on
line diff
--- a/src/channel.c +++ b/src/channel.c @@ -3205,7 +3205,7 @@ channel_close(channel_T *channel, int in if (channel_need_redraw) { channel_need_redraw = FALSE; - redraw_after_callback(TRUE); + redraw_after_callback(TRUE, FALSE); } if (!channel->ch_drop_never) @@ -4687,7 +4687,7 @@ channel_parse_messages(void) if (channel_need_redraw) { channel_need_redraw = FALSE; - redraw_after_callback(TRUE); + redraw_after_callback(TRUE, FALSE); } --safe_to_invoke_callback;