How to Access a Class through "Ctrl+Click" in Sublime Text 3

LoveAndHappiness picture LoveAndHappiness · Jul 7, 2015 · Viewed 10.1k times · Source

I've got this class as an example:

Which plugin do I use to be able to click on:

PHPUnit_Framework_TestCase

And get to the class?

class PracticeTest extends PHPUnit_Framework_TestCase {
    public function testHelloWorld() {
        $greeting = 'Hello, World.';
        $this->assertTrue($greeting === 'Hello, World.');
    }
}

Right now I have to manually search for it. I know PHPStorm has this functionality and I believe Sublime must have a plugin for it.

Thanks a lot.

Answer

Rabin Bhandari picture Rabin Bhandari · May 28, 2017

Click on class name that you want to jump and press f12.