-
Notifications
You must be signed in to change notification settings - Fork 67
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
Cannot open components with webstorm: spawn webstorm ENOENT. #9
Comments
solved by #4 (comment) |
Helps a little bit but it still doesn't work completely After doing what's suggested in #4 , I can run However, using your plugin, the file is opened with vim in the 'Terminal' tab of WebStorm, it's very strange... |
3 years late here but for anyone who may come across this from Google trying to fix that vim issue. If you set the env variable # Adds support for various open in editor features in tools
export EDITOR="webstorm"
if [[ "$__CFBundleIdentifier" == com.jetbrains.* ]]
then
# Removes "com.jetbrains." from the beginning of string
# Then removes "-EAP" from end of string if needed
export EDITOR="${${__CFBundleIdentifier#"com.jetbrains."}%"-EAP"}"
fi Should detect which JetBrains tool you're using and set it accordingly. (Defaulting to If you only need Webstorm support you can add the env variable in the Terminal preferences inside Webstorm. Note: You may need to setup the shell script command launcher for the relevant program. I use JetBrains Toolbox so they're generated automatically in my path. https://www.jetbrains.com/help/webstorm/working-with-the-ide-features-from-command-line.html |
@jdf221 I'd tip my hat to you sir, I've been fighting this issue since day-1 with macOS+Webstorm, your solution works like a charm (tested using |
Issue is that Jetbrains toolbox seems to use shell scripts shims/wrappers that run the binary.
|
I'm using
launch-editor
with webpack.When I try to open a component in Webstorm, the following message is displayed in the dev-server console:
The browser console says
File src/vue/App.vue opened in editor
, and it works well with other editors so I guess it's well configured.Any idea how to fix this ?
Thanks
The text was updated successfully, but these errors were encountered: