bdf.vim 473 B

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