1
0
Fork 0

Zsh: Add function: die()

This commit is contained in:
tastytea 2022-04-03 04:35:11 +02:00
parent 64c12cd4cf
commit 5e925e84a8
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 18 additions and 0 deletions

18
.config/zsh/functions/die Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env zsh
# Exit with the error code of the last command and an optional error message in
# bold pink. The error code is overridden by the first argument, if it is a
# number. Put this in ${fpath} and load it with `autoload -U die`.
local errorcode=${?}
if [[ -v 1 && ${1} =~ '^[0-9]+$' ]]; then
errorcode=${1}
shift
fi
if [[ -v 1 ]]; then
print -Pnu2 "%B%F{201}"
print -u2 "${@}"
print -Pnu2 "%f%b"
fi
exit ${errorcode}