Mercurial > vim
annotate runtime/compiler/gcc.vim @ 3125:992b24149a9e v7.3.333
updated for version 7.3.333
Problem: Using "." to repeat a Visual delete counts the size in bytes, not
characters. (Connor Lane Smith)
Solution: Store the virtual column numbers instead of byte positions.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 04 Oct 2011 21:22:44 +0200 |
parents | 7d8af31066c8 |
children | 91e53bcb7946 |
rev | line source |
---|---|
375 | 1 " Vim compiler file |
2 " Compiler: GNU C Compiler | |
839 | 3 " Maintainer: Nikolai Weibull <now@bitwi.se> |
2608
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2236
diff
changeset
|
4 " Latest Revision: 2010-10-14 |
375 | 5 |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "gcc" | |
10 | |
11 let s:cpo_save = &cpo | |
12 set cpo-=C | |
13 | |
1621 | 14 CompilerSet errorformat= |
2034 | 15 \%*[^\"]\"%f\"%*\\D%l:%c:\ %m, |
375 | 16 \%*[^\"]\"%f\"%*\\D%l:\ %m, |
2034 | 17 \\"%f\"%*\\D%l:%c:\ %m, |
375 | 18 \\"%f\"%*\\D%l:\ %m, |
19 \%-G%f:%l:\ %trror:\ (Each\ undeclared\ identifier\ is\ reported\ only\ once, | |
20 \%-G%f:%l:\ %trror:\ for\ each\ function\ it\ appears\ in.), | |
2608
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2236
diff
changeset
|
21 \%f:%l:%c:\ %trror:\ %m, |
2236
dc2e5ec0500d
Added the undofile() function. Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
22 \%f:%l:%c:\ %tarning:\ %m, |
2034 | 23 \%f:%l:%c:\ %m, |
2608
7d8af31066c8
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2236
diff
changeset
|
24 \%f:%l:\ %trror:\ %m, |
2236
dc2e5ec0500d
Added the undofile() function. Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
25 \%f:%l:\ %tarning:\ %m, |
375 | 26 \%f:%l:\ %m, |
27 \\"%f\"\\,\ line\ %l%*\\D%c%*[^\ ]\ %m, | |
28 \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f', | |
29 \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f', | |
1213 | 30 \%D%*\\a:\ Entering\ directory\ `%f', |
31 \%X%*\\a:\ Leaving\ directory\ `%f', | |
375 | 32 \%DMaking\ %*\\a\ in\ %f |
33 | |
1213 | 34 if exists('g:compiler_gcc_ignore_unmatched_lines') |
1621 | 35 CompilerSet errorformat+=%-G%.%# |
1213 | 36 endif |
37 | |
375 | 38 let &cpo = s:cpo_save |
39 unlet s:cpo_save |