view runtime/compiler/bdf.vim @ 4756:96f3348f9f11 v7.3.1125

updated for version 7.3.1125 Problem: Error for using \%V in a pattern in tiny Vim. Solution: Allow using \%V but never match. (Dominique Pelle)
author Bram Moolenaar <bram@vim.org>
date Wed, 05 Jun 2013 21:10:59 +0200
parents 1f3b1021f002
children 1218c5353e2b
line wrap: on
line source

" Vim compiler file
" Compiler:         BDF to PCF Conversion
" Maintainer:       Nikolai Weibull <now@bitwi.se>
" Latest Revision:  2006-04-19

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

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

setlocal makeprg=bdftopcf\ $*

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

let &cpo = s:cpo_save
unlet s:cpo_save