Skip to content

Commit 9119238

Browse files
authored
Fix Oh my Zsh correct fpath
Every time I open the terminal show this: ```/.oh-my-zsh/custom/exercism_completion.zsh:local:6: options: can't change type of autoloaded parameter``` You need to put the file in any `$fpath`, but `~/.oh-my-zsh/custom` is not one of them. Look this: beetbox/beets#1731
1 parent b31af6c commit 9119238

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

shell/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ and then add the directory to your `$fpath` in your `.zshrc`, `.zsh_profile` or
3232

3333
#### Oh my Zsh
3434

35-
If you are using the popular [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh) framework to manage your zsh plugins, move the file `exercism_completion.zsh` into `~/.oh-my-zsh/custom`.
35+
If you are using the popular [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh) framework to manage your zsh plugins, follow these steps:
36+
37+
mkdir -p ~/.oh-my-zsh/completions
38+
mv ../shell/exercism_completion.zsh ~/.oh-my-zsh/completions
39+
3640

3741
### Fish
3842

0 commit comments

Comments
 (0)