PHP 项目的 Textmate 自动完成和类大纲

发布于 2024-09-24 19:58:33 字数 1536 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

北方的巷 2024-10-01 19:58:33

您可以使用 tm-completion 捆绑包在 TextMate for PHP 中获得自动完成功能。它的工作效果不如您在其他 IDE(如 Eclipse 或 Visual Studio、xCode)中看到的那么好。但确实有效。

支持标准 PHP 补全。请参阅 PHP 捆绑包 ->支持->帮助

You can get auto completion in TextMate for PHP using the tm-completion bundle. In doesn't work anything as good as what you might see in other IDEs like Eclipse or Visual Studio, xCode. But is works.

Standard PHP completion is supported. See the PHP Bundle -> Support -> Help

宛菡 2024-10-01 19:58:33

我知道这可能很可怕——这对我来说是——但你可以使用 Vim 非常有效地编码。它绝对不是一个交钥匙解决方案,但如果您在项目之间有一些时间,那么这是值得的。

  • 标签列表tagbar 是提供代码导航的插件。
  • 有许多 自动完成的解决方案
  • 您可以在单个文件中使用 gd 进行声明,或者在更复杂的情况下使用 exuberant ctags 和 ctrl-] 进行声明。

I know it can be frightening — it was for me — but you can code very efficiently with Vim. It's definetly not a turnkey solution but if you have some time between projects it's worth it.

  • Taglist and tagbar are plugins that provide code navigation.
  • There are a number of solutions for autocompletion.
  • you can go to declaration with gd in a single file or with exuberant ctags and ctrl-] in more complex situations.
任谁 2024-10-01 19:58:33

TextMate 有 30 天的试用期,因此请尝试一下,看看它是否适合您。

我使用 Coda,它具有本机 PHP 函数的类大纲和自动完成功能,但不具有自定义类。

TextMate has a 30 day trial, so give it a go and see how it is for you.

I use Coda, which has class outline and autocompletion for native PHP functions, but not custom classes.

深白境迁sunset 2024-10-01 19:58:33

不,我不认为有这些 - Textmate 是一个文本编辑器,而不是一个成熟的 IDE。

默认 php 包提供自动完成和代码提示...但仅适用于内置函数。

“转到符号”命令会显示类和函数大纲...但仅限于当前文件。

no, i don't think there's any of these - Textmate is a text editor, not a full-blown IDE.

default php bundle provides autocompletion and code hints... but only for built-in functions.

"go to symbol" command brings up class and functions outline... but only for the current file.

谁许谁一生繁华 2024-10-01 19:58:33

为了快速浏览文件中的类、函数和方法,可以使用 TmCodeBrowser 插件。它使用 Exuberant CTag 来索引各种代码类型。

For quickly browsing to classes, functions and methods in a file, there is the TmCodeBrowser plugin. It uses Exuberant CTags to index the various code types.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文