This commit is contained in:
Bryan Ramos 2026-04-08 16:14:55 -04:00
parent f6700648a3
commit f0fe41e942
3 changed files with 26 additions and 8 deletions

6
prompt
View file

@ -172,4 +172,8 @@ git() {
return $ret
}
PROMPT_COMMAND="_set_prompt"
if [ -n "$PROMPT_COMMAND" ]; then
PROMPT_COMMAND="_set_prompt;$PROMPT_COMMAND"
else
PROMPT_COMMAND="_set_prompt"
fi