ftplugin.vim 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. " Vim support file to switch on loading plugins for file types
  2. "
  3. " Maintainer: Bram Moolenaar <Bram@vim.org>
  4. " Last change: 2006 Apr 30
  5. if exists("did_load_ftplugin")
  6. finish
  7. endif
  8. let did_load_ftplugin = 1
  9. augroup filetypeplugin
  10. au FileType * call s:LoadFTPlugin()
  11. func! s:LoadFTPlugin()
  12. if exists("b:undo_ftplugin")
  13. exe b:undo_ftplugin
  14. unlet! b:undo_ftplugin b:did_ftplugin
  15. endif
  16. let s = expand("<amatch>")
  17. if s != ""
  18. if &cpo =~# "S" && exists("b:did_ftplugin")
  19. " In compatible mode options are reset to the global values, need to
  20. " set the local values also when a plugin was already used.
  21. unlet b:did_ftplugin
  22. endif
  23. " When there is a dot it is used to separate filetype names. Thus for
  24. " "aaa.bbb" load "aaa" and then "bbb".
  25. for name in split(s, '\.')
  26. " Load Lua ftplugins after Vim ftplugins _per directory_
  27. " TODO(clason): use nvim__get_runtime when supports globs and modeline
  28. exe printf('runtime! ftplugin/%s.vim ftplugin/%s.lua
  29. \ ftplugin/%s_*.vim ftplugin/%s_*.lua
  30. \ ftplugin/%s/*.vim ftplugin/%s/*.lua',
  31. \ name, name, name, name, name, name)
  32. endfor
  33. endif
  34. endfunc
  35. augroup END