annotate runtime/indent/docbk.vim @ 2702:77f3dd990b12
v7.3.119
updated for version 7.3.119
Problem: Build problem on Mac. (Nicholas Stallard)
Solution: Use "extern" instead of "EXTERN" for p_vfile.
author |
Bram Moolenaar <bram@vim.org> |
date |
Sat, 12 Feb 2011 14:00:03 +0100 |
parents |
8cd729851562 |
children |
1218c5353e2b |
rev |
line source |
7
|
1 " Vim indent file
|
856
|
2 " Language: DocBook Documentation Format
|
839
|
3 " Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
4 " Latest Revision: 2006-04-19
|
7
|
5
|
353
|
6 if exists("b:did_indent")
|
375
|
7 finish
|
353
|
8 endif
|
|
9
|
7
|
10 " Same as XML indenting for now.
|
|
11 runtime! indent/xml.vim
|
|
12
|
353
|
13 if exists('*XmlIndentGet')
|
|
14 setlocal indentexpr=XmlIndentGet(v:lnum,0)
|
|
15 endif
|