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