neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

bdf.vim (603B)


      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 
      8 if exists("current_compiler")
      9  finish
     10 endif
     11 let current_compiler = "bdf"
     12 
     13 let s:cpo_save = &cpo
     14 set cpo-=C
     15 
     16 CompilerSet makeprg=bdftopcf\ $*
     17 CompilerSet errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m,
     18      \%-Z%p^,
     19      \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt,
     20      \%-G%.%#
     21 
     22 let &cpo = s:cpo_save
     23 unlet s:cpo_save