mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.0.0797: finished job in terminal window is not handled
Problem: Finished job in terminal window is not handled.
Solution: Add the scrollback buffer. Use it to fill the buffer when the job
has ended.
d85f271bf8
This commit is contained in:
parent
6dacfe7217
commit
3bc8639c1a
@ -4831,13 +4831,13 @@ static void win_redr_status(win_T *wp)
|
||||
p = NameBuff;
|
||||
len = (int)STRLEN(p);
|
||||
|
||||
if (wp->w_buffer->b_help
|
||||
if (bt_help(wp->w_buffer)
|
||||
|| wp->w_p_pvw
|
||||
|| bufIsChanged(wp->w_buffer)
|
||||
|| wp->w_buffer->b_p_ro) {
|
||||
*(p + len++) = ' ';
|
||||
}
|
||||
if (wp->w_buffer->b_help) {
|
||||
if (bt_help(wp->w_buffer)) {
|
||||
STRCPY(p + len, _("[Help]"));
|
||||
len += (int)STRLEN(p + len);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user