|
|
@ -28,3 +28,19 @@ unsetopt CLOBBER # Do not overwrite existing files with > and >>.
|
|
|
|
|
|
|
|
|
|
|
|
alias d='dirs -v'
|
|
|
|
alias d='dirs -v'
|
|
|
|
for index ({1..9}) alias "$index"="cd +${index}"; unset index
|
|
|
|
for index ({1..9}) alias "$index"="cd +${index}"; unset index
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (is-at-least 4.1) \
|
|
|
|
|
|
|
|
&& zstyle -t ':prezto:module:directory' persist-dirstack
|
|
|
|
|
|
|
|
then
|
|
|
|
|
|
|
|
if [[ -f ~/.zdirs ]] && [[ ${#dirstack[*]} -eq 0 ]]; then
|
|
|
|
|
|
|
|
echo "\n" >> ~/.zdirs
|
|
|
|
|
|
|
|
dirstack=( ${(uf)"$(< ~/.zdirs)"//"$HOME"[[:space:]]/} )
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _persist_dirstack {
|
|
|
|
|
|
|
|
dirs -pl >! ~/.zdirs
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
autoload -Uz add-zsh-hook
|
|
|
|
|
|
|
|
add-zsh-hook chpwd _persist_dirstack
|
|
|
|
|
|
|
|
fi
|
|
|
|