是否有可能在Sublime文本中通过方法调用获得PHP方法声明?
// pressing some keys combination should navigate me
// to the method declaration. If it's defined in some other file,
// the file should be opened.
$foo->doSomething();发布于 2015-04-29 20:17:06
有一个叫做SublimeCodeIntel的很棒的插件,它有以下特性:
自动完成函数跳转到符号定义-跳到symbol.
发布于 2019-02-12 11:07:38
对于Python,
我将这个项目添加到sublime。
我按下CTRL+R,然后开始输入我的函数名。然后,光标指向函数定义的开头。
希望这能有所帮助。
https://stackoverflow.com/questions/9594475
复制相似问题