8

の一部のスクリプト$VIMRUNTIME/ftplugin/(たとえばpython.vim、およびada.vim)はを定義しませんb:undo_ftplugin。オプションのcpoデフォルト値はですaABceFs

set ft=pythonが、そしてset ft=css$VIMRUNTIME/ftplugin/css.vimすぐに終了します。そしてomnifunc=pythoncomplete#Completeいつも。

すべてftplugin/name.vimを定義する必要がありますb:undo_ftpluginか?


これは /usr/share/vim/vim73/ftplugin.vim

" Vim support file to switch on loading plugins for file types
"
" Maintainer:   Bram Moolenaar <Bram@vim.org>
" Last change:  2006 Apr 30

if exists("did_load_ftplugin")
  finish
endif
let did_load_ftplugin = 1

augroup filetypeplugin
  au FileType * call s:LoadFTPlugin()

  func! s:LoadFTPlugin()
    if exists("b:undo_ftplugin")
      exe b:undo_ftplugin
      unlet! b:undo_ftplugin b:did_ftplugin
    endif

    let s = expand("<amatch>")
    if s != ""
      if &cpo =~# "S" && exists("b:did_ftplugin")
        " In compatible mode options are reset to the global values, need to
        " set the local values also when a plugin was already used.
        unlet b:did_ftplugin
      endif

      " When there is a dot it is used to separate filetype names.  Thus for
      " "aaa.bbb" load "aaa" and then "bbb".
      for name in split(s, '\.')
        exe 'runtime! ftplugin/' . name . '.vim ftplugin/' . name . '_*.vim ftplugin/' . name . '/*.vim'
      endfor
    endif
  endfunc
augroup END

これは/usr/share/vim/vim73/ftplugin/css.vim

" Vim filetype plugin file
" Language:         CSS
" Maintainer:       Nikolai Weibull <now@bitwi.se>
" Latest Revision:  2008-07-09

if exists("b:did_ftplugin")
  finish
endif
let b:did_ftplugin = 1

let s:cpo_save = &cpo
set cpo&vim

let b:undo_ftplugin = "setl com< cms< inc< fo< ofu<"

setlocal comments=s1:/*,mb:*,ex:*/ commentstring&
setlocal formatoptions-=t formatoptions+=croql
setlocal omnifunc=csscomplete#CompleteCSS

let &l:include = '^\s*@import\s\+\%(url(\)\='

let &cpo = s:cpo_save
unlet s:cpo_save

set ft=pythonの場合、set ft=css。Vimはこのテストに合格できません:

if &cpo =~# "S" && exists("b:did_ftplugin")

b:did_ftplugin削除されないので、ftplugin/css.vimすぐに終了します。

4

1 に答える 1

9

:help undo_ftplugin言及:

ユーザーが「:setfiletypexyz」を実行すると、前のファイルタイプの効果を元に戻す必要があります。

「必須」ではなく「すべき」と書かれていることに注意してください。しかし、実装によると

func! s:LoadFTPlugin()
    if exists("b:undo_ftplugin")
        exe b:undo_ftplugin
        unlet! b:undo_ftplugin b:did_ftplugin
    endif

ftpluginはを定義する必要がありb:undo_ftpluginます。定義しないと、そのファイルタイプ設定をで変更できなくなります:setf。ドキュメントはそれを指摘するべきだと思います、そしてすべてのftpluginsは確かに設定されるべきですb:undo_ftplugin(空の、操作なしの値にのみ)。

于 2012-07-11T06:36:54.937 に答える