view runtime/compiler/bdf.vim @ 814:f40f1a8520ff v7.0c01

updated for version 7.0c01
author vimboss
date Mon, 27 Mar 2006 21:03:26 +0000
parents 0ae54f30d5bc
children 1f3b1021f002
line wrap: on
line source

" Vim compiler file
" Compiler:         BDF to PCF Conversion
" Maintainer:       Nikolai Weibull <nikolai+work.vim@bitwi.se>
" Latest Revision:  2005-06-29

if exists("current_compiler")
  finish
endif
let current_compiler = "bdf"

let s:cpo_save = &cpo
set cpo-=C

CompilerSet makeprg=bdftopcf\ $*

CompilerSet errorformat=%ABDF\ %trror\ on\ line\ %l:\ %m,
      \%-Z%p^,
      \%Cbdftopcf:\ bdf\ input\\,\ %f\\,\ corrupt,
      \%-G%.%#

let &cpo = s:cpo_save
unlet s:cpo_save