annotate runtime/indent/bib.vim @ 20307:ad6949eaa1c7
v8.2.0709
patch 8.2.0709: MS-Windows: compiler warning for int vs size_t
Commit: https://github.com/vim/vim/commit/ea554ca4faf4a0b96706ea24130c4f485b24b241
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu May 7 17:46:59 2020 +0200
patch 8.2.0709: MS-Windows: compiler warning for int vs size_t
Problem: MS-Windows: compiler warning for int vs size_t.
Solution: Add type cast. (Mike Williams)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 07 May 2020 18:00:04 +0200 |
parents |
fca8a9b65afa |
children |
|
rev |
line source |
233
|
1 " Vim indent file
|
|
2 " Language: BibTeX
|
|
3 " Maintainer: Dorai Sitaram <ds26@gte.com>
|
|
4 " URL: http://www.ccs.neu.edu/~dorai/vimplugins/vimplugins.html
|
|
5 " Last Change: 2005 Mar 28
|
|
6
|
|
7 " Only do this when not done yet for this buffer
|
|
8 if exists("b:did_indent")
|
|
9 finish
|
|
10 endif
|
|
11 let b:did_indent = 1
|
|
12
|
|
13 setlocal cindent
|
|
14
|
|
15 let b:undo_indent = "setl cin<"
|