comparison runtime/compiler/gcc.vim @ 1213:8906c10ecbb0

updated for version 7.1b
author vimboss
date Thu, 10 May 2007 18:19:11 +0000
parents 1f3b1021f002
children 82b5078be2dd
comparison
equal deleted inserted replaced
1212:e085b0f7b036 1213:8906c10ecbb0
1 " Vim compiler file 1 " Vim compiler file
2 " Compiler: GNU C Compiler 2 " Compiler: GNU C Compiler
3 " Maintainer: Nikolai Weibull <now@bitwi.se> 3 " Maintainer: Nikolai Weibull <now@bitwi.se>
4 " Latest Revision: 2006-04-19 4 " Latest Revision: 2006-12-20
5 5
6 if exists("current_compiler") 6 if exists("current_compiler")
7 finish 7 finish
8 endif 8 endif
9 let current_compiler = "gcc" 9 let current_compiler = "gcc"
18 \%-G%f:%l:\ %trror:\ for\ each\ function\ it\ appears\ in.), 18 \%-G%f:%l:\ %trror:\ for\ each\ function\ it\ appears\ in.),
19 \%f:%l:\ %m, 19 \%f:%l:\ %m,
20 \\"%f\"\\,\ line\ %l%*\\D%c%*[^\ ]\ %m, 20 \\"%f\"\\,\ line\ %l%*\\D%c%*[^\ ]\ %m,
21 \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f', 21 \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f',
22 \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f', 22 \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f',
23 \%D%*\\a:\ Entering\ directory\ `%f',
24 \%X%*\\a:\ Leaving\ directory\ `%f',
23 \%DMaking\ %*\\a\ in\ %f 25 \%DMaking\ %*\\a\ in\ %f
26
27 if exists('g:compiler_gcc_ignore_unmatched_lines')
28 let &errorformat .= ',%-G%.%#'
29 endif
24 30
25 let &cpo = s:cpo_save 31 let &cpo = s:cpo_save
26 unlet s:cpo_save 32 unlet s:cpo_save