-
Notifications
You must be signed in to change notification settings - Fork 4.5k
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
Path doesn't respect order #337
Comments
I forgot to |
Sorry, I have the same problem.I'm having the same problem. I'm running zsh inside tmux.
|
A lot of stuff has been moved between |
I update my dotfiles; problem continues. |
Printing out the path right after setting it on |
That was the reason issue #500 existed ;) |
I see, thanks for the link. I thought I had |
…efined value. Causes such expansions to be highlighted as [unknown-token] rather than as default (absent from $region_highlight). Fixes sorin-ionescu#337.
I've got another interesting conundrum.
I've got a customized path in my .zshenv, pretty much the standard one, just rearranged slightly:
But if i run
echo ${PATH}
in a new terminal, I get/Users/jeffs/.rbenv/shims:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/local/sbin:/Users/jeffs/.bin
As you can see, the
/usr/local
is appearing later in the path than the/usr/bin
. Homebrew tends to whine about this, as it should, as system binaries could override homebrew binaries this way.Interestingly enough, though, if i run
exec $SHELL
and then runecho ${PATH}
, i get/Users/jeffs/.rbenv/shims:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Users/jeffs/.bin:/opt/X11/bin:/Users/jeffs/.rbenv/shims
, which is correct.The text was updated successfully, but these errors were encountered: