2751
|
1 " Compiler: G95
|
|
2 " Maintainer: H Xu <xuhdev@gmail.com>
|
|
3 " Version: 0.1.3
|
|
4 " Last Change: 2011 Apr 01
|
|
5 " Homepage: http://www.vim.org/scripts/script.php?script_id=3492
|
|
6 " https://bitbucket.org/xuhdev/compiler-g95.vim
|
|
7 " License: Same as Vim
|
|
8
|
|
9 if exists('current_compiler')
|
|
10 finish
|
|
11 endif
|
|
12 let current_compiler = 'g95'
|
|
13
|
|
14 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
|
|
15 command -nargs=* CompilerSet setlocal <args>
|
|
16 endif
|
|
17
|
|
18 CompilerSet errorformat=
|
|
19 \%AIn\ file\ %f:%l,
|
|
20 \%-C%p1,
|
|
21 \%-Z%trror:\ %m,
|
|
22 \%-Z%tarning\ (%n):\ %m,
|
|
23 \%-C%.%#
|