PHP Plugin Sublime text 3

4

Does anyone know the name of the PHP plugin that shows a description of the php function in my IDE when I put the cursor on it? By EX:

function:

str_replace();

When you put the mouse over it, a description of what it does, and what it does:

str_replace($find, $string, $replace) // essa função localiza uma string e a substitui na string informada. (pode ser em ingles essa descrição)

Basically what I'm looking for is this: (a description of the function inside the editor itself)

    
asked by anonymous 13.10.2017 / 14:23

1 answer

6

GotoDocumentation

  

"Open the documentation for the keyword the cursor is in."

link

SublimeCodeIntel

link

    
13.10.2017 / 14:26