annotate runtime/indent/docbk.vim @ 24747:7da496081b91
v8.2.2912
patch 8.2.2912: MS-Windows: most users expect using Unicode
Commit: https://github.com/vim/vim/commit/f883d9027c750967b115b82de984ee449ab17aa8
Author: K.Takata <kentkt@csc.jp>
Date: Sun May 30 18:04:19 2021 +0200
patch 8.2.2912: MS-Windows: most users expect using Unicode
Problem: MS-Windows: most users expect using Unicode.
Solution: Default 'encoding' to utf-8 on MS-Windows. (Ken Takata,
closes #3907)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 30 May 2021 18:15:03 +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
|