This commit is contained in:
a 2024-04-26 09:12:26 +02:00 committed by Noorhteen Raja NJ
parent 134f313d73
commit a8a604d4c5
2 changed files with 5 additions and 3 deletions

View file

@ -4,7 +4,7 @@
**Changed:**
* XONSH_TRACE_SUBPROC returns more useful details.
* ``$XONSH_TRACE_SUBPROC=2`` returns more useful details.
**Deprecated:**

View file

@ -75,6 +75,7 @@ from xonsh.tools import (
is_string_set,
is_tok_color_dict,
is_valid_shlvl,
is_bool_or_int,
logfile_opt_to_str,
path_to_str,
pathsep_to_upper_seq,
@ -1186,8 +1187,9 @@ The file should contain a function with the signature
" - ptk style name (string) - ``$XONSH_STYLE_OVERRIDES['pygments.keyword'] = '#ff0000'``\n\n"
"(The rules above are all have the same effect.)",
)
XONSH_TRACE_SUBPROC = Var.with_default(
default=always_false,
XONSH_TRACE_SUBPROC = Var(
default=False,
validate=is_bool_or_int,
convert=to_bool_or_int,
doc="Set to ``True`` or ``1`` to show arguments list of every executed subprocess command. "
"Use ``2`` to have full specification.",