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 / postscr.vim < prev    next >
Encoding:
Text File  |  2012-05-31  |  1.0 KB  |  39 lines

  1. " Vim filetype plugin file
  2. " Language:    PostScript
  3. " Maintainer:    Mike Williams <mrw@eandem.co.uk>
  4. " Last Change:  24th April 2012
  5.  
  6. " Only do this when not done yet for this buffer
  7. if exists("b:did_ftplugin")
  8.   finish
  9. endif
  10.  
  11. " Don't load another plugin for this buffer
  12. let b:did_ftplugin = 1
  13.  
  14. let s:cpo_save = &cpo
  15. set cpo&vim
  16.  
  17. " PS comment formatting
  18. setlocal comments=b:%
  19. setlocal formatoptions-=t formatoptions+=rol
  20.  
  21. " Define patterns for the matchit macro
  22. if !exists("b:match_words")
  23.   let b:match_ignorecase = 0
  24.   let b:match_words = '<<:>>,\<begin\>:\<end\>,\<save\>:\<restore\>,\<gsave\>:\<grestore\>'
  25. endif
  26.  
  27. " Define patterns for the browse file filter
  28. if has("gui_win32") && !exists("b:browsefilter")
  29.   let b:browsefilter = "PostScript Files (*.ps)\t*.ps\n" .
  30.     \ "EPS Files (*.eps)\t*.eps\n" .
  31.     \ "All Files (*.*)\t*.*\n"
  32. endif
  33.  
  34. let b:undo_ftplugin = "setlocal comments< formatoptions<"
  35.     \ . "| unlet! b:browsefiler b:match_ignorecase b:match_words"
  36.  
  37. let &cpo = s:cpo_save
  38. unlet s:cpo_save
  39.