comparison runtime/compiler/bdf.vim @ 375:f14cbd913415 v7.0097

updated for version 7.0097
author vimboss
date Wed, 29 Jun 2005 22:40:58 +0000
parents 3fc0f57ecb91
children 4fe8e1a7758e
comparison
equal deleted inserted replaced
374:575dacb554d8 375:f14cbd913415
1 " Vim compiler file 1 " Vim compiler file
2 " Compiler: BDF to PCF Conversion 2 " Compiler: BDF to PCF Conversion
3 " Maintainer: Nikolai Weibull <sourc@pcppopper.org> 3 " Maintainer: Nikolai Weibull <nikolai+work.vim@bitwi.se>
4 " URL: http://www.pcppopper.org/vim/compiler/pcp/bdf/ 4 " Latest Revision: 2005-06-29
5 " Latest Revision: 2004-05-22
6 " arch-tag: 2e2f3a55-199b-468c-aa2e-d6b1a7b87806
7 5
8 if exists("current_compiler") 6 if exists("current_compiler")
9 finish 7 finish
10 endif 8 endif
11 let current_compiler = "bdf" 9 let current_compiler = "bdf"
12 10
13 if exists(":CompilerSet") != 2 " older Vim always used :setlocal 11 if exists(":CompilerSet") != 2
14 command -nargs=* CompilerSet setlocal <args> 12 command -nargs=* CompilerSet setlocal <args>
15 endif 13 endif
16 14
17 let s:cpo_save = &cpo 15 let s:cpo_save = &cpo
18 set cpo-=C 16 set cpo-=C
24 \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt, 22 \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt,
25 \%-G%.%# 23 \%-G%.%#
26 24
27 let &cpo = s:cpo_save 25 let &cpo = s:cpo_save
28 unlet s:cpo_save 26 unlet s:cpo_save
29
30 " vim: set sts=2 sw=2: