Mercurial > vim
annotate runtime/ftplugin/toml.vim @ 26248:36361f080ffd v8.2.3655
patch 8.2.3655: compiler warning for using size_t for int
Commit: https://github.com/vim/vim/commit/cc9d725bbb515baf172c2be21de12d35a961e4ee
Author: Mike Williams <mikew@globalgraphics.com>
Date: Tue Nov 23 12:35:57 2021 +0000
patch 8.2.3655: compiler warning for using size_t for int
Problem: Compiler warning for using size_t for int.
Solution: Add a type cast. (Mike Williams, closes https://github.com/vim/vim/issues/9199)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 23 Nov 2021 13:45:03 +0100 |
parents | 3b34837f4538 |
children | ef1c4fa8fc11 |
rev | line source |
---|---|
25973 | 1 " Vim filetype plugin |
2 " Language: TOML | |
3 " Homepage: https://github.com/cespare/vim-toml | |
4 " Maintainer: Aman Verma | |
5 " Author: Kevin Ballard <kevin@sb.org> | |
6 " Last Change: Sep 21, 2021 | |
7 | |
8 if exists('b:did_ftplugin') | |
9 finish | |
10 endif | |
11 let b:did_ftplugin = 1 | |
12 | |
13 let s:save_cpo = &cpo | |
14 set cpo&vim | |
15 let b:undo_ftplugin = 'setlocal commentstring< comments<' | |
16 | |
17 setlocal commentstring=#\ %s | |
18 setlocal comments=:# | |
19 | |
20 let &cpo = s:save_cpo | |
21 unlet s:save_cpo | |
22 | |
23 " vim: et sw=2 sts=2 |