mirror of
https://github.com/neovim/neovim.git
synced 2026-07-22 17:02:59 +00:00
Problem:
Vimscript ftplugins that inherit a base ftplugin often use explicit
`runtime! ftplugin/foo.vim` patterns. This skips corresponding Lua
ftplugins, unlike top-level ftplugin loading.
Solution:
Use the existing `{vim,lua}` patterns for bang runtime imports while
preserving each call's current lookup breadth.
25 lines
570 B
VimL
25 lines
570 B
VimL
" Vim filetype plugin file
|
|
" Language: DocBook
|
|
" Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
" Latest Revision: 2012-04-25
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
|
|
if !exists('b:docbk_type')
|
|
if expand('%:e') == 'sgml'
|
|
let b:docbk_type = 'sgml'
|
|
else
|
|
let b:docbk_type = 'xml'
|
|
endif
|
|
endif
|
|
|
|
if b:docbk_type == 'sgml'
|
|
runtime! ftplugin/sgml[.]{vim,lua} ftplugin/sgml_*.{vim,lua} ftplugin/sgml/*.{vim,lua}
|
|
else
|
|
runtime! ftplugin/xml[.]{vim,lua} ftplugin/xml_*.{vim,lua} ftplugin/xml/*.{vim,lua}
|
|
endif
|
|
|
|
let b:undo_ftplugin = "unlet! b:docbk_type"
|