comparison runtime/ftplugin/tcl.vim @ 2034:7bc41231fbc7

Update runtime files.
author Bram Moolenaar <bram@zimbu.org>
date Wed, 06 Jan 2010 20:54:52 +0100
parents
children 94601b379f38
comparison
equal deleted inserted replaced
2033:de5a43c5eedc 2034:7bc41231fbc7
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
35
36 " vim: set et ts=4 sw=4 tw=78: