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 / bdf.vim < prev    next >
Encoding:
Text File  |  2010-08-15  |  483 b   |  23 lines

  1. " Vim compiler file
  2. " Compiler:         BDF to PCF Conversion
  3. " Maintainer:       Nikolai Weibull <now@bitwi.se>
  4. " Latest Revision:  2006-04-19
  5.  
  6. if exists("current_compiler")
  7.   finish
  8. endif
  9. let current_compiler = "bdf"
  10.  
  11. let s:cpo_save = &cpo
  12. set cpo-=C
  13.  
  14. setlocal makeprg=bdftopcf\ $*
  15.  
  16. setlocal errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m,
  17.       \%-Z%p^,
  18.       \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt,
  19.       \%-G%.%#
  20.  
  21. let &cpo = s:cpo_save
  22. unlet s:cpo_save
  23.