Mercurial > vim
annotate runtime/ftplugin/tcl.vim @ 19382:e6f0b4fe0b6d v8.2.0249
patch 8.2.0249: MS-Windows: various warnings
Commit: https://github.com/vim/vim/commit/3fb377fa78131004138b22a87afe33eeb7649b94
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Feb 12 21:52:32 2020 +0100
patch 8.2.0249: MS-Windows: various warnings
Problem: MS-Windows: various warnings.
Solution: Set the charset to utf-8. Add _WIN32_WINNT and _USING_V110_SDK71_.
(Ken Takata, closes #5625)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 12 Feb 2020 22:00:05 +0100 |
parents | 94601b379f38 |
children | 8ae680be2a51 |
rev | line source |
---|---|
2034 | 1 " Vim filetype plugin file |
2 " Language: Tcl | |
3 " Maintainer: Robert L Hicks <sigzero@gmail.com> | |
4 " Latest Revision: 2009-05-01 | |
5 | |
6 if exists("b:did_ftplugin") | |
7 finish | |
8 endif | |
9 let b:did_ftplugin = 1 | |
10 | |
11 " Make sure the continuation lines below do not cause problems in | |
12 " compatibility mode. | |
13 let s:cpo_save = &cpo | |
14 set cpo-=C | |
15 | |
16 setlocal comments=:# | |
17 setlocal commentstring=#%s | |
18 setlocal formatoptions+=croql | |
19 | |
20 " Change the browse dialog on Windows to show mainly Tcl-related files | |
21 if has("gui_win32") | |
22 let b:browsefilter = "Tcl Source Files (.tcl)\t*.tcl\n" . | |
23 \ "Tcl Test Files (.test)\t*.test\n" . | |
24 \ "All Files (*.*)\t*.*\n" | |
25 endif | |
26 | |
27 "----------------------------------------------------------------------------- | |
28 | |
29 " Undo the stuff we changed. | |
30 let b:undo_ftplugin = "setlocal fo< com< cms< inc< inex< def< isf< kp<" . | |
31 \ " | unlet! b:browsefilter" | |
32 | |
33 " Restore the saved compatibility options. | |
34 let &cpo = s:cpo_save | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
35 unlet s:cpo_save |
2034 | 36 |
37 " vim: set et ts=4 sw=4 tw=78: |