Vim - 激活 PHP 文件上的 HTML 片段

发布于 2024-09-05 04:12:14 字数 314 浏览 3 评论 0原文

我正在使用vim和snipMate,很多时候我需要将HTML文件命名为PHP,只是因为一两行代码。

我每次创建 PHP 文件时,vim 都会将其视为 PHP 文件,因此 HTML 片段不可用,因此必须使用命令手动激活 HTML 片段。

set ft=php.html

我打算在我的 vimrc 上的这一行自动激活它,

autocmd BufREad, BufNewFile *.php set ft=php.html

这是正确的吗?我错过了什么或者有什么问题吗?

I am using vim and snipMate, many times I need to name the HTML files to PHP, just because of 1 or 2 lines of code.

I every time I create a PHP file vim takes it as PHP file and so the HTML snippets are not available, thus have to activate the HTML snippets manually with the command.

set ft=php.html

I intend to activate it automatically in this this line on my vimrc

autocmd BufREad, BufNewFile *.php set ft=php.html

Is this correct? I am missing anything or is something wrong?

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

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

发布评论

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

评论(2

七分※倦醒 2024-09-12 04:12:14

您需要将其设为两个单独的指令。

au BufRead *.php set ft=php.html
au BufNewFile *.php set ft=php.html

You will need to make it two separate directives.

au BufRead *.php set ft=php.html
au BufNewFile *.php set ft=php.html
又怨 2024-09-12 04:12:14

您的示例中有一个大写的 E。
以下内容应该在一行上运行:

au BufRead,BufNewFile *.php set ft=php.html

You have an uppercase E in your example.
The following should work on one line:

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