有没有可以声明函数、变量的开源 IDE?
任何开源 IDE 都可以通过按键来声明函数、变量、类……?
除了 Netbeans 和 Eclipse。
问候
哈维
any open source IDE with the possibility to go the declaration of a function, a variable, a class... presing a key(s)??
Apart from Netbeans and Eclipse.
Regards
Javi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看看ctags,以及例如 vim.实际上,“ctags”是一个严重的轻描淡写,因为您可以为几乎任何语言生成函数和变量“标签”的索引。
Take a look at ctags, and e.g. vim. In reality, "ctags" is a gross understatement, as you can generate an index of function and variable "tags" for almost any language.
emacs 或 vim 可以让你对大多数语言执行此操作。但并不是真正的 IDE。
emacs or vim would allow you to do this for most languages. Not really an IDE though.
我更喜欢使用 PHPDesigner 它有免费版本。您似乎要问的是该编辑器所做的所谓“代码完成”,以及右键单击自定义函数并“转到定义”或按 F1 查看有关该函数的 PHP 手册的功能。
I prefer to use PHPDesigner which does have a free edition. What you appear to be asking about is called "code completition" which this editor does, along with the ability to right click a custom function and "Go to definition" or hit F1 to view the PHP Manual on that function.
可能是 Komodo 编辑 ?它与 Eclipse 和 Netbeans 很接近,但更简单。您可以通过自定义快捷键或 CTRL + 单击所需的 var/func 来声明函数或变量。
May be Komodo edit ? It's close to Eclipse and Netbeans, but much more simpler. You can go to declaration of function or variable by a custom shortcut key or just CTRL + Click on the desired var/func.