7
|
1 " Vim compiler file
|
|
2 " Compiler: BDF to PCF Conversion
|
|
3 " Maintainer: Nikolai Weibull <sourc@pcppopper.org>
|
|
4 " URL: http://www.pcppopper.org/vim/compiler/pcp/bdf/
|
|
5 " Latest Revision: 2004-05-22
|
|
6 " arch-tag: 2e2f3a55-199b-468c-aa2e-d6b1a7b87806
|
|
7
|
|
8 if exists("current_compiler")
|
|
9 finish
|
|
10 endif
|
|
11 let current_compiler = "bdf"
|
|
12
|
|
13 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
|
|
14 command -nargs=* CompilerSet setlocal <args>
|
|
15 endif
|
|
16
|
|
17 let s:cpo_save = &cpo
|
|
18 set cpo-=C
|
|
19
|
|
20 CompilerSet makeprg=bdftopcf\ $*
|
|
21
|
|
22 CompilerSet errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m,
|
|
23 \%-Z%p^,
|
|
24 \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt,
|
|
25 \%-G%.%#
|
|
26
|
|
27 let &cpo = s:cpo_save
|
|
28 unlet s:cpo_save
|
|
29
|
|
30 " vim: set sts=2 sw=2:
|