We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The vimrc file checks if it can execute node js on line 42:
if !executable('node') || !executable('npm')
node is executed by issuing nodejs by default though, the check should be
nodejs
if !executable('nodejs') || !executable('npm')
The text was updated successfully, but these errors were encountered:
On which OS ? How did you install node ? I think it depends on the way you've installed it :
Is it a problem ? If yes I can check for at least one.
Sorry, something went wrong.
I'm on Lubuntu, which I believe is based off Ubuntu Trusty.
I installed nodejs via debian package or though npm (cannot remember) but there was only nodejs installed not node.
It's not a huge issue, but an extra check will cause less friction for new users.
96f63af
krampstudio
No branches or pull requests
The vimrc file checks if it can execute node js on line 42:
if !executable('node') || !executable('npm')
node is executed by issuing
nodejs
by default though, the check should beif !executable('nodejs') || !executable('npm')
The text was updated successfully, but these errors were encountered: