You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So @osaris made a fix here #59 but as @Zhomart pointed out, we need to add -U as an option to autoload.
I can confirm adding -U makes it work. I am using zsh 5.0.8 (x86_64-apple-darwin14.3.0) and without the -U, I get:
bashcompinit:134: parse error near `|'
/Users/eumir/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/lunchy-0.10.3/lib/../extras/lunchy-completion.bash:18: command not found: complete
The usual alias expansion during reading will be suppressed if the autoload builtin
or its equivalent is given the option -U. This is recommended for the use of
functions supplied with the zsh distribution. Note that for functions
precompiled with the zcompile builtin command the flag -U must
be provided when the .zwc file is created, as the corresponding
information is compiled into the latter.
The text was updated successfully, but these errors were encountered:
So @osaris made a fix here #59 but as @Zhomart pointed out, we need to add -U as an option to autoload.
I can confirm adding -U makes it work. I am using
zsh 5.0.8 (x86_64-apple-darwin14.3.0)
and without the -U, I get:I don't know much about zsh (I only use it because of yadr) but from what I read here: http://zsh.sourceforge.net/Doc/Release/Functions.html#Autoloading-Functions it is needed because:
The text was updated successfully, but these errors were encountered: