mirror of
https://github.com/neovim/neovim.git
synced 2025-09-23 03:28:33 +00:00
terminal.c: need maketitle() in terminal-mode
normal_redraw() usually takes care of this, but that doesn't happen
during terminal-mode.
regression by c484323dc6
steps to reproduce:
nvim -u NORC --cmd 'execute("set titlestring=" . $NVIM_LISTEN_ADDRESS) | set title | startinsert | !sleep 1' term://sh
closes #7248
This commit is contained in:
@@ -5847,7 +5847,7 @@ static void screen_start_highlight(int attr)
|
||||
ui_start_highlight(attr);
|
||||
}
|
||||
|
||||
void screen_stop_highlight(void)
|
||||
static void screen_stop_highlight(void)
|
||||
{
|
||||
ui_stop_highlight();
|
||||
screen_attr = 0;
|
||||
|
Reference in New Issue
Block a user