mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 22:43:58 +00:00
Reset updated flag when restarting job so new output is detected, reported by
Gregory Pakosz in GitHub issue 922.
This commit is contained in:
5
CHANGES
5
CHANGES
@ -1,5 +1,8 @@
|
|||||||
CHANGES FROM 2.4 to 2.5 09 May 2017
|
CHANGES FROM 2.4 to 2.5 09 May 2017
|
||||||
|
|
||||||
|
* Reset updated flag when restarting #() command so that new output is properly
|
||||||
|
recognised. GitHub issue 922.
|
||||||
|
|
||||||
* Fix ECH with a background colour.
|
* Fix ECH with a background colour.
|
||||||
|
|
||||||
* Do not rely on the terminal not moving the cursor after DL or EL.
|
* Do not rely on the terminal not moving the cursor after DL or EL.
|
||||||
@ -12,7 +15,7 @@ CHANGES FROM 2.4 to 2.5 09 May 2017
|
|||||||
* Add pane_mode format.
|
* Add pane_mode format.
|
||||||
|
|
||||||
* Differentiate M-Up from Escape+Up when possible (that is, in terminals with
|
* Differentiate M-Up from Escape+Up when possible (that is, in terminals with
|
||||||
xterm(1) style functions keys). GitHub issue 907.
|
xterm(1) style function keys). GitHub issue 907.
|
||||||
|
|
||||||
* Add session_stack and window_stack_index formats.
|
* Add session_stack and window_stack_index formats.
|
||||||
|
|
||||||
|
1
format.c
1
format.c
@ -320,6 +320,7 @@ format_job_get(struct format_tree *ft, const char *cmd)
|
|||||||
xasprintf(&fj->out, "<'%s' didn't start>", fj->cmd);
|
xasprintf(&fj->out, "<'%s' didn't start>", fj->cmd);
|
||||||
}
|
}
|
||||||
fj->last = t;
|
fj->last = t;
|
||||||
|
fj->updated = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ft->flags & FORMAT_STATUS)
|
if (ft->flags & FORMAT_STATUS)
|
||||||
|
Reference in New Issue
Block a user