summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Cornellà <marc@mcornella.com>2024-07-13 18:32:22 +0200
committerMarc Cornellà <marc@mcornella.com>2024-07-13 18:32:22 +0200
commit0b27b15d0b08645bd995e13b8d69fcbe2ef7e8eb (patch)
tree68a4a275a3f2132019734072e393850a92ed39a8
parent11ca9e2ac7c70b4682e6b7d1e50a1a1cb7c1a5d9 (diff)
downloadzsh-0b27b15d0b08645bd995e13b8d69fcbe2ef7e8eb.tar.gz
zsh-0b27b15d0b08645bd995e13b8d69fcbe2ef7e8eb.tar.bz2
zsh-0b27b15d0b08645bd995e13b8d69fcbe2ef7e8eb.zip
fix(init): fix subscript flag in 11ca9e2a
-rw-r--r--oh-my-zsh.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh
index 906d19a45..b1032841c 100644
--- a/oh-my-zsh.sh
+++ b/oh-my-zsh.sh
@@ -65,7 +65,7 @@ fi
# Create cache and completions dir and add to $fpath
mkdir -p "$ZSH_CACHE_DIR/completions"
-(( ${fpath[(ie)$ZSH_CACHE_DIR/completions]} )) || fpath=("$ZSH_CACHE_DIR/completions" $fpath)
+(( ${fpath[(Ie)$ZSH_CACHE_DIR/completions]} )) || fpath=("$ZSH_CACHE_DIR/completions" $fpath)
# Check for updates on initial load...
source "$ZSH/tools/check_for_upgrade.sh"