2014-06-15 12:08:04 -07:00
|
|
|
## History wrapper
|
|
|
|
function omz_history {
|
2024-04-16 10:38:58 -07:00
|
|
|
# parse arguments and remove from $@
|
2024-06-12 02:04:05 -07:00
|
|
|
local clear list stamp REPLY
|
2024-04-18 01:49:34 -07:00
|
|
|
zparseopts -E -D c=clear l=list f=stamp E=stamp i=stamp t:=stamp
|
2014-12-18 13:56:49 -07:00
|
|
|
|
2024-04-17 22:12:32 -07:00
|
|
|
if [[ -n "$clear" ]]; then
|
2014-12-18 13:56:49 -07:00
|
|
|
# if -c provided, clobber the history file
|
2024-06-12 02:04:05 -07:00
|
|
|
|
|
|
|
# confirm action before deleting history
|
|
|
|
print -nu2 "This action will irreversibly delete your command history. Are you sure? [y/N] "
|
2024-06-18 04:32:22 -07:00
|
|
|
builtin read -E
|
2024-06-17 22:26:38 -07:00
|
|
|
[[ "$REPLY" = [yY] ]] || return 0
|
2024-06-12 02:04:05 -07:00
|
|
|
|
|
|
|
print -nu2 >| "$HISTFILE"
|
2020-10-27 02:33:21 -07:00
|
|
|
fc -p "$HISTFILE"
|
2024-06-12 02:04:05 -07:00
|
|
|
|
|
|
|
print -u2 History file deleted.
|
2024-04-17 22:12:32 -07:00
|
|
|
elif [[ $# -eq 0 ]]; then
|
|
|
|
# if no arguments provided, show full history starting from 1
|
|
|
|
builtin fc $stamp -l 1
|
2014-06-15 12:08:04 -07:00
|
|
|
else
|
2024-04-08 23:07:57 -07:00
|
|
|
# otherwise, run `fc -l` with a custom format
|
2024-04-16 10:38:58 -07:00
|
|
|
builtin fc $stamp -l "$@"
|
2014-06-15 12:08:04 -07:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Timestamp format
|
2019-04-09 03:58:45 -07:00
|
|
|
case ${HIST_STAMPS-} in
|
2014-06-15 12:08:04 -07: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 04:14:15 -07:00
|
|
|
"") alias history='omz_history' ;;
|
|
|
|
*) alias history="omz_history -t '$HIST_STAMPS'" ;;
|
2014-01-10 15:50:19 -07:00
|
|
|
esac
|
|
|
|
|
2014-12-13 15:31:56 -07:00
|
|
|
## History file configuration
|
|
|
|
[ -z "$HISTFILE" ] && HISTFILE="$HOME/.zsh_history"
|
2020-06-03 10:34:57 -07:00
|
|
|
[ "$HISTSIZE" -lt 50000 ] && HISTSIZE=50000
|
|
|
|
[ "$SAVEHIST" -lt 10000 ] && SAVEHIST=10000
|
2014-12-13 15:31:56 -07:00
|
|
|
|
|
|
|
## History command configuration
|
|
|
|
setopt extended_history # record timestamp of command in HISTFILE
|
|
|
|
setopt hist_expire_dups_first # delete duplicates first when HISTFILE size exceeds HISTSIZE
|
|
|
|
setopt hist_ignore_dups # ignore duplicated commands history list
|
|
|
|
setopt hist_ignore_space # ignore commands that start with space
|
|
|
|
setopt hist_verify # show command with history expansion to user before running it
|
2020-11-09 04:00:06 -07:00
|
|
|
setopt share_history # share command history data
|