mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-25 09:12:30 +08:00
Don't override ZSH_COMPDUMP if already set.
This allows customization via .zshenv if wanted. This is helpful for zsh developers and people who want to move it out of $HOME
This commit is contained in:
parent
fbf4a78acf
commit
67d74cbc2d
|
@ -46,7 +46,9 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Save the location of the current completion dump file.
|
# Save the location of the current completion dump file.
|
||||||
ZSH_COMPDUMP="${ZDOTDIR:-${HOME}}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
|
if [ -z "$ZSH_COMPDUMP" ]; then
|
||||||
|
ZSH_COMPDUMP="${ZDOTDIR:-${HOME}}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
|
||||||
|
fi
|
||||||
|
|
||||||
# Load and run compinit
|
# Load and run compinit
|
||||||
autoload -U compinit
|
autoload -U compinit
|
||||||
|
|
Loading…
Reference in New Issue
Block a user