Ohmyzsh: Several plugins not working unless final entry in plugins list

Created on 21 Mar 2016  ·  1Comment  ·  Source: ohmyzsh/ohmyzsh

I'm trying to use the following built-in plugins: git, brew, npm, pip, z, colored-man-pages. I'm also using zsh-syntax-highlighting for which I include the following line at the very bottom of my .zshrc:

source `brew --prefix`/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

What I've observed is that only the last plugin entered in the list will work correctly. Any other plugins in the list do not work correctly. For instance, I can't get any tab completion or suggestions from the brew plugin unless I place it last in the list. The npm plugin will sometimes somewhat work without being last, but in those cases it's laggier than usual and a bit buggy. Also, git completions and suggestions work with and without git being present in the plugins list.

I'm not sure what to make of all this, any thoughts?

Most helpful comment

Problem solved. I was separating the entries to the plugins list using commas, when they should just be space-separated

e.g.

plugins=(git z brew npm pip)

>All comments

Problem solved. I was separating the entries to the plugins list using commas, when they should just be space-separated

e.g.

plugins=(git z brew npm pip)
Was this page helpful?
0 / 5 - 0 ratings