summaryrefslogtreecommitdiff
path: root/runtime/indent/docbk.vim
blob: 297ad04e6c5914a3a82a6f38dfff8c291d83f1eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
" Vim indent file
" Language:	    DocBook Documentation Format
" Maintainer:	    Nikolai Weibull <source@pcppopper.org>
" URL:		    http://www.pcppopper.org/vim/indent/pcp/docbk/
" Latest Revision:  2004-05-22
" arch-tag:	    3d073af7-1d69-42a2-99ad-9a49a21eb28f

if exists("b:did_indent")
    finish
endif

" Same as XML indenting for now.
runtime! indent/xml.vim

if exists('*XmlIndentGet')
  setlocal indentexpr=XmlIndentGet(v:lnum,0)
endif

" vim: set sts=2 sw=2: