mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
Add REMEMBER-HISTORY environment variable
This commit is contained in:
parent
d42b41407d
commit
c6736ccf16
1 changed files with 9 additions and 0 deletions
|
@ -1615,6 +1615,15 @@ def DEFAULT_VARS():
|
||||||
"xonsh process threads sleep for while running command pipelines. "
|
"xonsh process threads sleep for while running command pipelines. "
|
||||||
"The value has units of seconds [s].",
|
"The value has units of seconds [s].",
|
||||||
),
|
),
|
||||||
|
"XONSH_REMEMBER_HISTORY": Var(
|
||||||
|
is_bool,
|
||||||
|
to_bool,
|
||||||
|
bool_to_str,
|
||||||
|
True,
|
||||||
|
"If False, Xonsh will not save history."
|
||||||
|
"History for the session will be deleted if it exists",
|
||||||
|
doc_configurable=True
|
||||||
|
),
|
||||||
"XONSH_SHOW_TRACEBACK": Var(
|
"XONSH_SHOW_TRACEBACK": Var(
|
||||||
is_bool,
|
is_bool,
|
||||||
to_bool,
|
to_bool,
|
||||||
|
|
Loading…
Add table
Reference in a new issue