Reputation: 1364
Imagine there is code like that:
<?php
class T
{
/**
* {@link http://php.net/count}
* @link http://php.net/count
*
* @param array $inputArray
*
* @return int
*/
public static function count(array $inputArray)
{
return count($inputArray);
}
}
If I open a quick documentation window for the method, then there is an HTTP link, which I can click and it'll be opened in browser.
But I wonder if there is a way to follow the link from @link
tag by clicking on it immediately from PhpStorm, without opening the quick documentation window?
I think I remember using this functionality, but I'm not 100% sure, and I could not find any info in the PhpStorm's documentation.
Upvotes: 1
Views: 483
Reputation: 72177
Ctrl-click on Windows (and Linux, I suppose) and Cmd-click on OSX opens the URL in the browser.
Upvotes: 0