2014-06-15 21:08:04 +02:00
|
|
|
## History wrapper
|
|
|
|
function omz_history {
|
2024-04-16 19:38:58 +02:00
|
|
|
# parse arguments and remove from $@
|
2024-06-12 11:04:05 +02:00
|
|
|
local clear list stamp REPLY
|
2024-04-18 10:49:34 +02:00
|
|
|
zparseopts -E -D c=clear l=list f=stamp E=stamp i=stamp t:=stamp
|
2014-12-18 21:56:49 +01:00
|
|
|
|
2024-04-18 07:12:32 +02:00
|
|
|
if [[ -n "$clear" ]]; then
|
2014-12-18 21:56:49 +01:00
|
|
|
# if -c provided, clobber the history file
|
2024-06-12 11:04:05 +02:00
|
|
|
|
|
|
|
# confirm action before deleting history
|
|
|
|
print -nu2 "This action will irreversibly delete your command history. Are you sure? [y/N] "
|
2024-06-18 13:32:22 +02:00
|
|
|
builtin read -E
|
2024-06-18 07:26:38 +02:00
|
|
|
[[ "$REPLY" = [yY] ]] || return 0
|
2024-06-12 11:04:05 +02:00
|
|
|
|
|
|
|
print -nu2 >| "$HISTFILE"
|
2020-10-27 10:33:21 +01:00
|
|
|
fc -p "$HISTFILE"
|
2024-06-12 11:04:05 +02:00
|
|
|
|
|
|
|
print -u2 History file deleted.
|
2024-04-18 07:12:32 +02:00
|
|
|
elif [[ $# -eq 0 ]]; then
|
|
|
|
# if no arguments provided, show full history starting from 1
|
|
|
|
builtin fc $stamp -l 1
|
2014-06-15 21:08:04 +02:00
|
|
|
else
|
2024-04-09 08:07:57 +02:00
|
|
|
# otherwise, run `fc -l` with a custom format
|
2024-04-16 19:38:58 +02:00
|
|
|
builtin fc $stamp -l "$@"
|
2014-06-15 21:08:04 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Timestamp format
|
2019-04-09 12:58:45 +02:00
|
|
|
case ${HIST_STAMPS-} in
|
2014-06-15 21:08:04 +02:00
|
|
|
"mm/dd/yyyy") alias history='omz_history -f' ;;
|
|
|
|
"dd.mm.yyyy") alias history='omz_history -E' ;;
|
|
|
|
"yyyy-mm-dd") alias history='omz_history -i' ;;
|
2018-07-13 13:14:15 +02:00
|
|
|
"") alias history='omz_history' ;;
|
|
|
|
*) alias history="omz_history -t '$HIST_STAMPS'" ;;
|
2014-01-10 23:50:19 +01:00
|
|
|
esac
|