Releases: anki-code/xontrib-prompt-bar
Releases · anki-code/xontrib-prompt-bar
0.5.8
0.5.7
0.5.6
Added hist_status
section to show hist off
if history disabled by history off
command.
0.5.5
0.5.4
Sometimes it's needed to hide the return code. In this case you can use -8888
return code i.e.:
aliases['cdls'] = "cd @($arg0) && @(lambda: -8888 if len(g`./*`) > 100 else 0) && ls --group-directories-first -A --color"
cdls /
# return code is 0 and `ls` command was executed and return code is not shown
cdls /usr/sbin
# return code is -8888 and `ls` command was NOT executed and return code is not shown
0.5.3
0.5.2
0.5.1
- Added printing return code (can be disabled by
XONTRIB_PROMPT_BAR_SHOW_RETURN = False
) - Fix
screen
section to avoid xonsh/xonsh#4912