2014-06-15 12:08:04 -07:00
|
|
|
## History wrapper
|
|
|
|
function omz_history {
|
2018-09-15 13:56:12 -07:00
|
|
|
local clear list
|
2014-12-18 13:56:49 -07:00
|
|
|
zparseopts -E c=clear l=list
|
|
|
|
|
|
|
|
if [[ -n "$clear" ]]; then
|
|
|
|
# if -c provided, clobber the history file
|
2014-06-15 12:08:04 -07:00
|
|
|
echo -n >| "$HISTFILE"
|
|
|
|
echo >&2 History file deleted. Reload the session to see its effects.
|
2014-12-18 13:56:49 -07:00
|
|
|
elif [[ -n "$list" ]]; then
|
|
|
|
# if -l provided, run as if calling `fc' directly
|
2014-12-18 12:36:56 -07:00
|
|
|
builtin fc "$@"
|
2014-06-15 12:08:04 -07:00
|
|
|
else
|
2018-09-15 13:56:12 -07:00
|
|
|
# unless a number is provided, show all history events (starting from 1)
|
2019-04-09 03:58:45 -07:00
|
|
|
[[ ${@[-1]-} = *[0-9]* ]] && builtin fc -l "$@" || builtin fc -l "$@" 1
|
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"
|
2018-04-22 06:26:57 -07:00
|
|
|
HISTSIZE=50000
|
2014-12-13 15:31:56 -07:00
|
|
|
SAVEHIST=10000
|
|
|
|
|
|
|
|
## 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
|
2020-05-16 08:17:38 -07:00
|
|
|
setopt hist_reduce_blanks # remove superfluous blanks from commands added to history
|
2014-12-13 15:31:56 -07:00
|
|
|
setopt hist_verify # show command with history expansion to user before running it
|
|
|
|
setopt inc_append_history # add commands to HISTFILE in order of execution
|
|
|
|
setopt share_history # share command history data
|