TextMate 项目中的 PHP 自定义类和函数自动完成
是否有一个包可以在 TextMate 项目中完成我的自定义类和函数?
喜欢 PHP 核心函数的代码提示吗?
Is there a bundle which completes my custom classes and functions in a TextMate project?
Like the code hints with PHP core functions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
据我所知(并在过去几个小时内试图找出答案),在 TextMate 中用代码完成您自己的 PHP 类和函数是不可能的。
旁注:作为这个问题的答案链接的 PHP 代码完成包已经完全过时了。您应该使用 http://github.com/textmate 中的官方 PHP 包。使用此捆绑包,您至少可以完成 PHP 的内置函数、将文档显示为工具提示并在新窗口中加载所选函数的 PHP 文档。
唯一的解决方法(与真实代码完成相比)是了解用于在文件之间和文件内部快速导航的 TextMate 快捷方式:
还值得在捆绑包编辑器中查看 PHP 捆绑包内部并记住一些快捷方式。一旦你学会了其中的一些,它就和使用 IDE 和代码完成一样快。
As far as I know (and tried to find out in the last couple of hours) there is no working possibility for code completing your own PHP classes and functions in TextMate.
On a sidenote: The PHP Code Completion bundle linked as an answer to this question is totally outdated. You should use the official PHP bundle from http://github.com/textmate instead. With this bundle you can at least complete PHP’s built-in functions, display documentation as a tooltip and load PHP’s docs for the selected function in a new window.
The only workaround (and it isn’t so nice compared to real code completion) is to know the TextMate shortcuts for fast navigation between and inside files:
It is also worth to look inside the PHP bundle in the Bundle Editor and memorize a couple of shortcuts. Once you learned a couple of them it’s as fast as with an IDE and code completion.
在此处查看 textmate php 代码补全 http://aralbalkan.com/822
Check out textmate php code completion here http://aralbalkan.com/822
然而,可以为您的自定义类自动完成。请参阅我对此问题的回答: Textmate 自动完成和类大纲对于 PHP 项目
Yet it is possible to get auto completion for you custom classes. See my answer to this question : Textmate autocompletion and class outline for PHP project