blob: 898026e3586895a7d367ca2805f51ce388af3885 [file] [log] [blame]
Bram Moolenaaradc21822011-04-01 18:03:16 +02001" Compiler: GNU Fortran Compiler
2" Maintainer: H Xu <xuhdev@gmail.com>
3" Version: 0.1.3
4" Last Change: 19 March 2011
5" Homepage: http://www.vim.org/scripts/script.php?script_id=3496
6" https://bitbucket.org/xuhdev/compiler-gfortran.vim
7" License: Same as Vim
8
9if exists('current_compiler')
10 finish
11endif
12let current_compiler = 'gfortran'
13
14if exists(":CompilerSet") != 2 " older Vim always used :setlocal
15 command -nargs=* CompilerSet setlocal <args>
16endif
17
18CompilerSet errorformat=
19 \%A%f:%l.%c:,
20 \%-Z%trror:\ %m,
21 \%-Z%tarning:\ %m,
22 \%-C%.%#