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 / unix / vim-6.2.tar.bz2 / vim-6.2.tar / vim62 / runtime / ftplugin / abaqus.vim next >
Encoding:
Text File  |  2003-05-11  |  684 b   |  26 lines

  1. " Vim filetype plugin file
  2. " Language:    Abaqus finite element input file (www.hks.com)
  3. " Maintainer:    Carl Osterwisch <osterwischc@asme.org>
  4. " Last Change:    2003 May 11
  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. " Folding
  15. if version >= 600
  16.   set foldexpr=getline(v:lnum)[0]!=\"\*\"
  17.   set foldmethod=expr
  18. endif
  19.  
  20. " Win32 can filter files in the browse dialog
  21. if has("gui_win32") && !exists("b:browsefilter")
  22.     let b:browsefilter = "Abaqus Input Files (*.inp *.inc)\t*.inp;*.inc\n" .
  23.     \ "Abaqus Results (*.dat *.pre)\t*.dat;*.pre\n" .
  24.     \ "All Files (*.*)\t*.*\n"
  25. endif
  26.