Add missing space causing error when ran

Added missing space to the if condition which caused an error when
the script was ran during an auto-update.
This commit is contained in:
Darth Binamira 2015-06-17 14:26:34 +08:00
commit b728735837

View file

@ -1,6 +1,6 @@
## Load smart urls if available
for d in $fpath; do
if [[ -e "$d/url-quote-magic"]]; then
if [[ -e "$d/url-quote-magic" ]]; then
autoload -U url-quote-magic
zle -N self-insert url-quote-magic
fi