Bram Moolenaar | 5c73622 | 2010-01-06 20:54:52 +0100 | [diff] [blame] | 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: |