Alle (or nearly all) "run configurations" in JetBrains IDEs provide an option to run an "external tool" as part of their execution. Is there a way to only run an external tool in a run configuration?
相关问题
- Where are Automatic Type Acquisition typescript de
- How can I add a horizontal line (“goal line”) for
- softlinks atime and mtime modification
- Get unexpanded argument from bash command line
- Include and Execute EXE in C# Command Line App
相关文章
- 使用Webstorm打开刚下载的jquery为什么会有报错
- Compile and build with single command line Java (L
- How to update command line output?
- How to execute another python script from your scr
- 这个python项目用什么ide打开好?
- Debugging with Eclipse CDT and GDB: can't find
- Python file keyword argument?
- Import errors with Pycharm
Not sure why you need it... I can suggest trying the Bash Support plugin (http://plugins.jetbrains.com/plugin/4230?pr=idea) - it has a kind of 'generic' run configuration that can be used for running arbitrary executable. See if it works for you. But note that it's a third-party plugin JetBrains is not responsible for
This has been a pain point for me for years. Here's my solution:
Run Configurations can be configured to invoke External Tools before launch, so the trick is to setup a run configuration that does absolutely nothing and then add your external tools to it.
Example: In WebStorm, I use an npm run configuration with the command set to version. Invoking this will cause all of the External Tool configurations in the Before Launch section to be executed (in order) before finally running
npm version
, which just generates output to the npm console.