Mercurial > vim
view runtime/ftplugin/docbk.vim @ 2656:4549e0e7fbb6 v7.3.076
updated for version 7.3.076
Problem: Clang warnings for dead code.
Solution: Remove it. (Carlo Teubner)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 08 Dec 2010 13:11:21 +0100 |
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