-
-
Notifications
You must be signed in to change notification settings - Fork 361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Oh my Zsh correct fpath #865
Conversation
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! Thank you so much for taking the time to fix this ✨
I'm wondering why or how this works… I'm not using It really should be in |
@NobbZ So you're saying we need to revert this? Would someone please reference some official docs to get a canonical answer? |
Sadly there is not much documenation about "custom"… https://github.com/robbyrussell/oh-my-zsh#custom-plugins-and-themes But as far as I can tell, the exercism completion is not a "plugin" in the way as But, from the sources, the https://github.com/robbyrussell/oh-my-zsh/blob/master/oh-my-zsh.sh#L20 Therefore, I conclude that @grisotto would you mind opening a ticket there and linking back? |
That would be really helpful!
❤️ This would be a great help :-) |
Hi, I think you can revert this PR. |
Ok, I'll do that. Thanks. |
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