diff options
author | Robby Russell <robby@planetargon.com> | 2011-05-25 12:55:41 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-05-25 12:55:41 -0700 |
commit | f9e2af2bd7e567114724c4ca7f4a1727a656e7e2 (patch) | |
tree | 4e85cc26e73df943a2f1dfcd736835e55dd73573 | |
parent | a57ffbed8524f0831f448e07f5d1d96d23272781 (diff) | |
parent | 1aacb74caf6800fe895ab3a40584c08bfded451e (diff) | |
download | zsh-f9e2af2bd7e567114724c4ca7f4a1727a656e7e2.tar.gz zsh-f9e2af2bd7e567114724c4ca7f4a1727a656e7e2.tar.bz2 zsh-f9e2af2bd7e567114724c4ca7f4a1727a656e7e2.zip |
Merge pull request #351 from GutenLinux/master
add custom completion support
-rw-r--r-- | oh-my-zsh.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index 2a206798d..c8f1a33b8 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -1,7 +1,7 @@ # Initializes Oh My Zsh # add a function path -fpath=($ZSH/functions $fpath) +fpath=($ZSH/functions $ZSH/completions $fpath) # Load all of the config files in ~/oh-my-zsh that end in .zsh # TIP: Add files you don't want in git to .gitignore |