blob: ecb3212cbe6736e66418b9e87cd076087cf09dc7 [file] [log] [blame]
Bram Moolenaaradc21822011-04-01 18:03:16 +02001" Compiler: G95
2" Maintainer: H Xu <xuhdev@gmail.com>
3" Version: 0.1.3
Bram Moolenaar9a7224b2012-04-30 15:56:52 +02004" Last Change: 2012 Apr 30
Bram Moolenaaradc21822011-04-01 18:03:16 +02005" 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
9if exists('current_compiler')
10 finish
11endif
12let current_compiler = 'g95'
Bram Moolenaar9a7224b2012-04-30 15:56:52 +020013let s:keepcpo= &cpo
14set cpo&vim
Bram Moolenaaradc21822011-04-01 18:03:16 +020015
16if exists(":CompilerSet") != 2 " older Vim always used :setlocal
17 command -nargs=* CompilerSet setlocal <args>
18endif
19
20CompilerSet errorformat=
21 \%AIn\ file\ %f:%l,
22 \%-C%p1,
23 \%-Z%trror:\ %m,
24 \%-Z%tarning\ (%n):\ %m,
25 \%-C%.%#
Bram Moolenaar9a7224b2012-04-30 15:56:52 +020026
27let &cpo = s:keepcpo
28unlet s:keepcpo