Update runtime files
[MacVim.git] / runtime / ftplugin / tcl.vim
blobc5bc3033eb3fd8694267012186110994e422b60d
1 " Vim filetype plugin file
2 " Language:         Tcl
3 " Maintainer:       Robert L Hicks <sigzero@gmail.com>
4 " Latest Revision:  2009-05-01
6 if exists("b:did_ftplugin")
7   finish
8 endif
9 let b:did_ftplugin = 1
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
16 setlocal comments=:#
17 setlocal commentstring=#%s
18 setlocal formatoptions+=croql
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
27 "-----------------------------------------------------------------------------
29 " Undo the stuff we changed.
30 let b:undo_ftplugin = "setlocal fo< com< cms< inc< inex< def< isf< kp<" .
31             \         " | unlet! b:browsefilter"
33 " Restore the saved compatibility options.
34 let &cpo = s:cpo_save
36 " vim: set et ts=4 sw=4 tw=78: