Vim - 激活 PHP 文件上的 HTML 片段
我正在使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将其设为两个单独的指令。
You will need to make it two separate directives.
您的示例中有一个大写的 E。
以下内容应该在一行上运行:
You have an uppercase E in your example.
The following should work on one line: