我已经下载了PHP.vim文件,其中包含基于PHP的语法信息.它应该能够提供基于语法的折叠,但由于某些原因我无法使其工作.
我已经设置:让g:PHP_folding 2和:set foldmethod = Syntax但无效.我很确定文件是在正确的位置并由vim读取,因为我可以这样做:让g:PHP_sql_query = 1可行.
:Syntax enable(或:Syntax on)有效,因为这两个选项也会打开文件类型检测.在折叠或突出显示工作之前必须检测文件类型.
原文链接:https://www.f2er.com/bash/387145.html如果您正在使用PHP进行开发,则可能需要将这三行添加到.vimrc中
set nocompatible " Because filetype detection doesn't work well in compatible mode filetype plugin indent on " Turns on filetype detection,filetype plugins,and filetype indenting all of which add nice extra features to whatever language you're using Syntax enable " Turns on filetype detection if not already on,and then applies filetype-specific highlighting.
然后你可以把你的let g:PHP_folding = 2并在你的〜/ .vim / after / ftplugin / PHP.vim文件中设置foldmethod = Syntax.
这将保持您的.vimrc文件干净,帮助组织您的所有设置,foldmethod =语法只会影响PHP文件(如果您想将语法设置为所有文件类型的默认折叠方法,请将该行留在.vimrc文件中)
有关更多详细信息,请阅读以下帮助文件
:help filetype :help usr_05.txt :help usr_43.txt