我正在使用vim wiki中的示例vimrc,并且其中包含“filetype indent plugin on”。我想知道这是否与设置“filetype plugin on”和“filetype indent on”相同,或者我是否必须在单独的命令中打开“filetype plugin”?
“filetype插件缩进”也与“filetype indent plugin on”相同吗?
答案 0 :(得分:6)
可以单独提供:
filetype plugin on
filetype indent on
这与单行命令相同:filetype indent plugin on
或filetype plugin indent on
。
任一命令,filetype indent plugin on
启用文件类型检测:filetype on
。
plugin
和indent
是两个单独的filetype
标记。只需键入:filetype
即可查看标志的各个状态。