From 4d9024d9f635fda33a1bbea475211098b351a5c3 Mon Sep 17 00:00:00 2001 From: adam j hartz Date: Sat, 5 Dec 2015 18:44:19 -0500 Subject: [PATCH] don't try to update title based on current command if we're storing stdout --- xonsh/built_ins.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xonsh/built_ins.py b/xonsh/built_ins.py index 3767df077..524defb23 100644 --- a/xonsh/built_ins.py +++ b/xonsh/built_ins.py @@ -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