Mercurial > vim
view runtime/ftplugin/docbk.vim @ 3030:07bc2ccfe555 v7.3.287
updated for version 7.3.287
Problem: Can't compile with MSVC and tiny options.
Solution: Move variables and #ifdefs. (Sergey Khorev)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sat, 27 Aug 2011 15:10:04 +0200 |
parents | 7d8af31066c8 |
children | 3482d151136b |
line wrap: on
line source
" Vim filetype plugin file " Language: DocBook " Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2010-10-14 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 ftplugin/sgml_*.vim ftplugin/sgml/*.vim else runtime! ftplugin/xml.vim ftplugin/xml_*.vim ftplugin/xml/*.vim endif