annotate runtime/indent/docbk.vim @ 11931:689bcb8f241c
v8.0.0845
patch 8.0.0845: MS-Windows: missing semicolon in terminal code
commit https://github.com/vim/vim/commit/d8dc1799377027be622d8571545658b20042e92e
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Aug 3 11:55:21 2017 +0200
patch 8.0.0845: MS-Windows: missing semicolon in terminal code
Problem: MS-Windows: missing semicolon in terminal code.
Solution: Add it. (Naruhiko Nishino, closes https://github.com/vim/vim/issues/1923)
author |
Christian Brabandt <cb@256bit.org> |
date |
Thu, 03 Aug 2017 12:00:04 +0200 |
parents |
1218c5353e2b |
children |
|
rev |
line source |
7
|
1 " Vim indent file
|
11062
|
2 " Language: DocBook Documentation Format
|
|
3 " Previous 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
|