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