How to see functions' parameters and descriptions on Sublime Text 3?

11,148

Solution 1

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.

Solution 2

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

Share:
11,148
Orhan Gazi
Author by

Orhan Gazi

Updated on June 05, 2022

Comments

  • Orhan Gazi
    Orhan Gazi almost 2 years

    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:

  • Orhan Gazi
    Orhan Gazi almost 10 years
    thanks, i found a few package. all autocomplate, php modern, php completion kits, php doc, php namespace etc.