6

I really like sublime but I have 1 major issue stopping me from migrating from Netbeans:

I need sublime autocomplete to show function description and method signature (i'm working with Yii framework and I need to know exactly what each function does, returns and passed arguments types).

I tried installing several plugins but none worked...if there is such a way then i'm missing it.

j0k
  • 22,600
  • 28
  • 79
  • 90
Danny Valariola
  • 1,118
  • 5
  • 26
  • 41

2 Answers2

7

You are just in time for Sublime Text 3 !

Symbol Indexing. Sublime Text now scans the files in your project, and builds an index of which files contain which symbols. This backs the new features Goto Definition and Goto Symbol in Project, both of which are available from the Goto menu. Goto Definition takes you to the definition of the symbol under the caret, while Goto Symbol in Project prompts you to select a symbol via fuzzy matching, and then takes you to the definition of that symbol.

j0k
  • 22,600
  • 28
  • 79
  • 90
  • @DannyValariola I thought you have a registered licence :-/ – j0k Jan 29 '13 at 08:09
  • 1
    I will have...once i have the feature i need – Danny Valariola Jan 29 '13 at 08:19
  • 2
    This doesn't work on autocomplete tho. Sure, you can go to definition, but if you type Class:: and expect the autocomplete to only show definitions inside Class, that won't work (at least not here) –  Sep 03 '13 at 08:32
3

you might want to try the code intel plugin

available here

otherwise you could use zencoding see here for tips

alternatively alt + click should do it!

here's a relatively new plugin

Rachel Gallen
  • 27,943
  • 21
  • 72
  • 81