2014-06-15 19:08:04 +00:00
|
|
|
## History wrapper
|
|
|
|
function omz_history {
|
2024-04-16 17:38:58 +00:00
|
|
|
# parse arguments and remove from $@
|
|
|
|
local clear list stamp
|
2024-04-18 08:49:34 +00:00
|
|
|
zparseopts -E -D c=clear l=list f=stamp E=stamp i=stamp t:=stamp
|
2014-12-18 20:56:49 +00:00
|
|
|
|
2024-04-18 05:12:32 +00:00
|
|
|
if [[ -n "$clear" ]]; then
|
2014-12-18 20:56:49 +00:00
|
|
|
# if -c provided, clobber the history file
|
2014-06-15 19:08:04 +00:00
|
|
|
echo -n >| "$HISTFILE"
|
2020-10-27 09:33:21 +00:00
|
|
|
fc -p "$HISTFILE"
|
|
|
|
echo >&2 History file deleted.
|
2024-04-18 05:12:32 +00:00
|
|
|
elif [[ $# -eq 0 ]]; then
|
|
|
|
# if no arguments provided, show full history starting from 1
|
|
|
|
builtin fc $stamp -l 1
|
2014-06-15 19:08:04 +00:00
|
|
|
else
|
2024-04-09 06:07:57 +00:00
|
|
|
# otherwise, run `fc -l` with a custom format
|
2024-04-16 17:38:58 +00:00
|
|
|
builtin fc $stamp -l "$@"
|
2014-06-15 19:08:04 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Timestamp format
|
2019-04-09 10:58:45 +00:00
|
|
|
case ${HIST_STAMPS-} in
|
2014-06-15 19:08:04 +00: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 11:14:15 +00:00
|
|
|
"") alias history='omz_history' ;;
|
|
|
|
*) alias history="omz_history -t '$HIST_STAMPS'" ;;
|
2014-01-10 22:50:19 +00:00
|
|
|
esac
|
|
|
|
|
2014-12-13 22:31:56 +00:00
|
|
|
## History file configuration
|
|
|
|
[ -z "$HISTFILE" ] && HISTFILE="$HOME/.zsh_history"
|
2020-06-03 17:34:57 +00:00
|
|
|
[ "$HISTSIZE" -lt 50000 ] && HISTSIZE=50000
|
|
|
|
[ "$SAVEHIST" -lt 10000 ] && SAVEHIST=10000
|
2014-12-13 22:31:56 +00: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 11:00:06 +00:00
|
|
|
setopt share_history # share command history data
|