blob: ae6d5ece021f490c57a1e2a7d52a0a09e89f7c1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
" MNV 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.mnv ftplugin/sgml_*.mnv ftplugin/sgml/*.mnv
else
runtime! ftplugin/xml.mnv ftplugin/xml_*.mnv ftplugin/xml/*.mnv
endif
let b:undo_ftplugin = "unlet! b:docbk_type"
|