File paths in run (gulp) output windows not clickable
I'm working with TypeScript code, and have a "gulp watch" task running in a "Run" window that displays task output while I'm editing files. Everything works great, *except* that, when there is an error message from the tsc compiler, the file name is not a clickable link. For example:
[22:43:51] Using gulpfile d:\dev\foo\gulpfile.js
[22:43:51] Starting 'default'...
[22:43:51] Starting 'clean'...
[22:43:51] Finished 'default' after 5.18 ms
[22:43:51] Finished 'clean' after 6.31 ms
[22:43:51] Starting 'compile-ts'...
src\app\foo\main.ts(59,30): error TS2346: Supplied parameters do not match any signature of call target.
...
Ideally, "src\app\foo\main.ts" would be a clickable link, that opens (or focuses if it's already open) the main.ts file in an editor tab. Bonus points if it can handle the line/column info, but that would be just gravy.
Is there a way for me to enable such functionality?
Please sign in to leave a comment.
Yes - please try upgrading to IDEA 2016.1.2 RC2 (build 145.970.4) (https://confluence.jetbrains.com/display/IDEADEV/IDEA+2016.1+EAP) - works fine for me there (doesn't work in Idea 145.597):
Impeccable timing! Yes, I updated and now have this feature. Thanks!