annotate runtime/indent/docbk.vim @ 20818:a0b147774bd4
v8.2.0961
patch 8.2.0961: MS-Windows: no completion for locales
Commit: https://github.com/vim/vim/commit/ec68028604b6ee799b2ef5fc861ec5163e82914f
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jun 12 19:35:32 2020 +0200
patch 8.2.0961: MS-Windows: no completion for locales
Problem: MS-Windows: no completion for locales.
Solution: Use the directories in $VIMRUNTIME/lang to complete locales.
(Christian Brabandt, closes 36248)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Fri, 12 Jun 2020 19:45: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
|