Detect non-URL links in console output and make them clickable?
已回答
I work on a project which outputs a lot of messages to the console which contain a unique identifier on the form id='uuid:6e5ce074-35d1-4829-ab9c-923b7fbc17a4'. It would make my work easier if that string could be made into the corresponding link so I could easily open the corresponding web page. After looking around and trying to search the net I could not locate where such a feature might hide in INtelliJ
I can write the conversion code if only there is a place to put it. For this particular case the rewriting into an URL is trivial (prefix + matched string).
Can IntelliJ do this as of 2016.3?
请先登录再写评论。
There is an opensource plug-in: https://plugins.jetbrains.com/idea/plugin/7183-output-link-filter. Feel free to adapt for your needs.
Does anyone know how to get this to work with files on your computer? e.g. make "C:\Program Files\file.exe" work?