home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / runtime / dos / ftplugin / tcl.vim < prev    next >
Encoding:
Text File  |  2012-05-31  |  1.0 KB  |  38 lines

  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. unlet s:cpo_save
  36.  
  37. " vim: set et ts=4 sw=4 tw=78:
  38.