-
-
Notifications
You must be signed in to change notification settings - Fork 112
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
Allow use of NVM_AUTO_USE alongside NVM_LAZY_LOAD on init #55
base: master
Are you sure you want to change the base?
Conversation
Thanks, I tried |
Whoops! I forgot about tests, didn't see the test failed until just now. Thanks @amirdt22 - I'll take a look at your PR :) |
Add failing test for auto and lazy
@amirdt22 @lukechilds any thoughts on why the tests are failing? Running the tests locally with urchin fails on |
@runofthemill, first of all, thank you a lot man for this PR my prompt shows the node version and strangely when I navigate to project has .nvmrc but I had to run any command first so it runs properly and shows the real node version
|
@MuhmdRaouf you're talking about how it's showing the message inside your prompt? how is that section of your prompt defined? |
@runofthemill I am using Zsh SpaceShip Theme
instead of node version. |
nvm will already be called by the line above (_zsh_nvm_load) so this a) takes longer and b) causes duplicated output in the terminal, e.g.: Found '/Users/[...]/.nvmrc' with version <9.2.1> Now using node v9.2.1 (npm v5.5.1) Found '/Users/[...]/.nvmrc' with version <9.2.1> Now using node v9.2.1 (npm v5.5.1)
@MuhmdRaouf I just checked and looks like the theme would need to add some logic here: In iTerm2 I use this to conditionally set the node version in the app status bar, you could probably use something similar in the theme: function set_node_version() {
if (type _zsh_nvm_nvm &>/dev/null); then
echo $(nvm current)
else
echo "unset"
fi
} |
@lukechilds I finally got tests to pass (yay escaping things!) - would love your thoughts on the PR whenever you get a chance! |
@@ -102,6 +102,7 @@ _zsh_nvm_lazy_load() { | |||
eval "$cmd(){ | |||
unset -f $cmds > /dev/null 2>&1 | |||
_zsh_nvm_load | |||
[[ \"$NVM_AUTO_USE\" == true ]] && add-zsh-hook chpwd _zsh_nvm_auto_use |
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.
Why do we need to setup the chpwd
hook here?
Shouldn't it already be set here?
https://github.com/lukechilds/zsh-nvm/pull/55/files#diff-dfc5680d74f94037e00d26cbeba9485eR212
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.
The tests all still pass if this line is removed:
https://travis-ci.org/github/lukechilds/zsh-nvm/jobs/687714916
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.
This is what you should do here:
[[ \"$NVM_AUTO_USE\" == true ]] && _zsh_nvm_auto_use
The hooks are already loaded, you just need to run _zsh_nvm_auto_use after loading nvm
This is what you should do here: [[ "$NVM_AUTO_USE" == true ]] && _zsh_nvm_auto_use |
Right now,
NVM_AUTO_USE=true
will not get applied on the initial call ofnvm
/npm
/node
/yarn
, and only work on subsequent session directory changes. This PR makesNVM_AUTO_USE=true
go into effect at the first invocation whenNVM_LAZY_LOAD=true
.Note - I'm good enough at tinkering in shell scripts, but totally could be doing something dumb here! Thanks for taking a look and making a great plugin!