mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-05 17:00:58 +01:00
don't try to update title based on current command if we're storing stdout
This commit is contained in:
parent
5c6cfba70e
commit
4d9024d9f6
1 changed files with 2 additions and 1 deletions
|
@ -613,7 +613,8 @@ def run_subproc(cmds, captured=True):
|
|||
'obj': prev_proc,
|
||||
'bg': background
|
||||
})
|
||||
if ENV.get('XONSH_INTERACTIVE'):
|
||||
if ENV.get('XONSH_INTERACTIVE') and not ENV.get('XONSH_STORE_STDOUT'):
|
||||
# set title here to get current command running
|
||||
builtins.__xonsh_shell__.settitle()
|
||||
if background:
|
||||
return
|
||||
|
|
Loading…
Add table
Reference in a new issue