使用 textmate 在 Rails 中转到方法定义的快捷方式
使用 Netbeans 或 Eclipse,我将 Ctrl + 单击函数名称以转到方法定义。 Textmate 中是否有任何快捷方式?
With Netbeans or Eclipse I would Ctrl + click on the function name to go to the method definition. Are there any shortcuts for this in Textmate ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个 CTags 包 可以实现类似的功能。尽管它看起来很旧,但它仍然有效 - 我自己也经常使用它
There's a CTags bundle that will allow something like that. Even though it looks old, it does still work - I use it a lot myself
Ctrl-H 是显示当前单词的 API 文档的选项。
但这不适用于项目中可能定义或包含的任何其他方法或类。对于那些我编写了一个 TextMate Bundle 命令(例如,您可以轻松地将其分配给 Ctrl+]),该命令查找插入符号下的类或方法的定义并将其显示在工具提示中,以及包含文件名和找到它的行。
看看:添加快捷方式TextMate 在工具提示中查找类或方法定义
希望您会发现它很有用;)
Ctrl-H is an option to show the API documentation for the current word.
But this doesn't work for any other methods or class that may be defined or included in your project. For those I've written a TextMate Bundle command (you can easily assign it to Ctrl+] for example) that lookup for the definition of the class or method under the caret and displays it in a tooltip, along with the file name and the line where it was find.
Check it out: Add a shortcut to TextMate to lookup a class or method definition in a tooltip
Hope you'll find it useful ;)