如何在blade.php扩展文件上切换注释。
Blade是Laravel特定文件,使用{{ - - }}注释掉。
我安装了Nerdcommenter,但由于缺乏Vim知识,我不知道如何修改它以使用刀片文件
现在,当我注释掉插件使用
时<!-- -->
有谁知道如何设置或推荐我的其他插件?
答案 0 :(得分:1)
nerdcommenter already have the comment style you mention,但您需要使用文件类型laravel
才能正常工作。
在再次使用nerdcommenter之前尝试发出:set ft=laravel
。
要在每次编辑刀片文件时都能使用此功能,您可以在vimrc
中添加以下行:
autocmd BufRead,BufNewFile *.blade.php set filetype=laravel
您可能还需要确保filetype indent plugin on
中有vimrc
。