0
我使用vim wiki中的示例vimrc,並在其中包含「filetype indent plugin on」。我想知道這是否與設置「filetype插件on」和「filetype indent on」相同,還是必須在單獨的命令中打開「filetype plugin」?在vim中結合filetype命令?
也是「文件類型插件縮進」就像「文件類型縮進插件」一樣?
我使用vim wiki中的示例vimrc,並在其中包含「filetype indent plugin on」。我想知道這是否與設置「filetype插件on」和「filetype indent on」相同,還是必須在單獨的命令中打開「filetype plugin」?在vim中結合filetype命令?
也是「文件類型插件縮進」就像「文件類型縮進插件」一樣?
它們可以被單獨地提供:
filetype plugin on
filetype indent on
這是一樣的單個行命令:filetype indent plugin on
,或filetype plugin indent on
。
任一命令和filetype indent plugin on
打開文件類型檢測:filetype on
。
plugin
和indent
是兩個單獨的filetype
標誌。輸入:filetype
即可查看標誌的個別狀態。
但是「filetype indent plugin on」與(「filetype plugin on」+「filetype indent on」)相同嗎? – bab
@ user1163114,是的。 – romainl