annotate runtime/indent/docbk.vim @ 9334:674f9e3ccd1a
v7.4.1949
commit https://github.com/vim/vim/commit/38df43bd13a2498cc96b3ddd9a20dd75126bd171
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jun 20 21:41:12 2016 +0200
patch 7.4.1949
Problem: Minor problems with the quickfix code.
Solution: Fix the problems. (Yegappan Lakshmanan)
author |
Christian Brabandt <cb@256bit.org> |
date |
Mon, 20 Jun 2016 21:45:06 +0200 |
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
|