mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 08:08:00 +00:00
history: Remove interim zstyle variables
This commit is contained in:
parent
3c002f772e
commit
e14fdff4cb
@ -26,13 +26,12 @@ setopt HIST_BEEP # Beep when accessing non-existent history.
|
|||||||
# Variables
|
# Variables
|
||||||
#
|
#
|
||||||
|
|
||||||
zstyle -s ':prezto:module:history' histfile '_pmh_histfile' || _pmh_histfile="${HISTFILE:-${ZDOTDIR:-$HOME}/.zsh_history}"
|
zstyle -s ':prezto:module:history' histfile 'HISTFILE' \
|
||||||
zstyle -s ':prezto:module:history' histsize '_pmh_histsize' || _pmh_histsize=10000
|
|| HISTFILE="${HISTFILE:-${ZDOTDIR:-$HOME}/.zsh_history}" # The path to the history file.
|
||||||
zstyle -s ':prezto:module:history' savehist '_pmh_savehist' || _pmh_savehist=${_pmh_histsize}
|
zstyle -s ':prezto:module:history' histsize 'HISTSIZE' \
|
||||||
HISTFILE="${_pmh_histfile}" # The path to the history file.
|
|| HISTSIZE=10000 # The maximum number of events to save in the internal history.
|
||||||
HISTSIZE="${_pmh_histsize}" # The maximum number of events to save in the internal history.
|
zstyle -s ':prezto:module:history' savehist 'SAVEHIST' \
|
||||||
SAVEHIST="${_pmh_savehist}" # The maximum number of events to save in the history file.
|
|| SAVEHIST=$HISTSIZE # The maximum number of events to save in the history file.
|
||||||
unset _pmh_{hist{file,size},savehist}
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Aliases
|
# Aliases
|
||||||
|
Loading…
Reference in New Issue
Block a user