Question

I see it on Notepad++ in advance (Ctrl+Shift+Space), but I dont find functions' parameters. I need PHP, MySQLi etc functions' descriptions or parameters tip.

I need something similar to this:

Was it helpful?

Solution

The feature is not available in ST. Currently, the API does not support popups/tool tips. I suppose it would be available, in some limited way, through customized auto complete entries, but those would likely only be common/library functions. You may need to do some further investigation into php packages.

OTHER TIPS

You can try PHPintel

  • Install PHPintel using Package Control
  • Create or open a project with PHP files
  • Run the command PHPIntel: Scan Project command from the command palette (Ctrl + P in windows)

After the initial scan, PHP files will be automatically re-scanned whenever you save them.

https://github.com/jotson/SublimePHPIntel

Sublime-IntelliDocs has similar feature.

https://github.com/shortcutme/Sublime-IntelliDocs

Usage

Set your cursor over a function or object you want to look up and press F2 to see relevant documentation

I found it: Docblockr

it is show the function hint

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top