xonsh/xontrib/prompt_ret_code.py
Noorhteen Raja NJ 80aca856e4
refactor: convert prompt_ret_code to be a py file (#4032)
to take advantage of flake/coverage
2021-01-12 13:35:38 -05:00

44 lines
1 KiB
Python

from xonsh.tools import ON_WINDOWS as _ON_WINDOWS
import builtins
def _ret_code_color():
if builtins.__xonsh__.history.rtns:
color = "blue" if builtins.__xonsh__.history.rtns[-1] == 0 else "red"
else:
color = "blue"
if _ON_WINDOWS:
if color == "blue":
return "{BOLD_INTENSE_CYAN}"
elif color == "red":
return "{BOLD_INTENSE_RED}"
else:
if color == "blue":
return "{BOLD_BLUE}"
elif color == "red":
return "{BOLD_RED}"
def _ret_code():
if builtins.__xonsh__.history.rtns:
return_code = builtins.__xonsh__.history.rtns[-1]
if return_code != 0:
return "[{}]".format(return_code)
return None
def _update():
env = builtins.__xonsh__.env
env["PROMPT"] = env["PROMPT"].replace(
"{prompt_end}{RESET}", "{ret_code_color}{ret_code}{prompt_end}{RESET}"
)
flds = env["PROMPT_FIELDS"]
flds["ret_code_color"] = _ret_code_color
flds["ret_code"] = _ret_code
# xontrib loads updates context
_update()