bdf.vim 603 B

123456789101112131415161718192021222324
  1. " Vim compiler file
  2. " Compiler: BDF to PCF Conversion
  3. " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
  4. " Contributors: Enno Nagel
  5. " Last Change: 2024 Mar 29
  6. " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
  7. if exists("current_compiler")
  8. finish
  9. endif
  10. let current_compiler = "bdf"
  11. let s:cpo_save = &cpo
  12. set cpo-=C
  13. CompilerSet makeprg=bdftopcf\ $*
  14. CompilerSet errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m,
  15. \%-Z%p^,
  16. \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt,
  17. \%-G%.%#
  18. let &cpo = s:cpo_save
  19. unlet s:cpo_save