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


i've got class example:

which plugin use able click on:

phpunit_framework_testcase

and class?

class practicetest extends phpunit_framework_testcase {     public function testhelloworld() {         $greeting = 'hello, world.';         $this->asserttrue($greeting === 'hello, world.');     } } 

right have manually search it. know phpstorm has functionality , believe sublime must have plugin it.

thanks lot.

avalance pointed in comments threat hinted sublimecodeintel.

and indeed sublimecodeintel allows behaviour needed:

see here: https://github.com/sublimecodeintel/sublimecodeintel#using

the solution jump definition this:

for mac os x:

jump definition = control+click jump definition = control+command+alt+up go = control+command+alt+left manual code intelligence = control+shift+space 

for linux:

jump definition = super+click jump definition = control+super+alt+up go = control+super+alt+left manual code intelligence = control+shift+space 

for windows:

jump definition = alt+click jump definition = control+windows+alt+up go = control+windows+alt+left manual code intelligence = control+shift+space 

Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -