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 / compiler / modelsim_vcom.vim < prev    next >
Encoding:
Text File  |  2010-08-15  |  819 b   |  21 lines

  1. " Vim Compiler File
  2. " Compiler:    Modelsim Vcom
  3. " Maintainer:    Paul Baleme <pbaleme@mail.com>
  4. " Last Change:    September 8, 2003
  5. " Thanks to:    allanherriman@hotmail.com
  6.  
  7. if exists("current_compiler")
  8.   finish
  9. endif
  10. let current_compiler = "modelsim_vcom"
  11.  
  12. if exists(":CompilerSet") != 2        " older Vim always used :setlocal
  13.   command -nargs=* CompilerSet setlocal <args>
  14. endif
  15.  
  16. "setlocal errorformat=\*\*\ %tRROR:\ %f(%l):\ %m,%tRROR:\ %f(%l):\ %m,%tARNING\[%*[0-9]\]:\ %f(%l):\ %m,\*\*\ %tRROR:\ %m,%tRROR:\ %m,%tARNING\[%*[0-9]\]:\ %m
  17.  
  18. "setlocal errorformat=%tRROR:\ %f(%l):\ %m,%tARNING\[%*[0-9]\]:\ %m
  19. CompilerSet errorformat=\*\*\ %tRROR:\ %f(%l):\ %m,\*\*\ %tRROR:\ %m,\*\*\ %tARNING:\ %m,\*\*\ %tOTE:\ %m,%tRROR:\ %f(%l):\ %m,%tARNING\[%*[0-9]\]:\ %f(%l):\ %m,%tRROR:\ %m,%tARNING\[%*[0-9]\]:\ %m
  20.  
  21.