xref: /vim-8.2.3635/runtime/compiler/g95.vim (revision 9a7224b5)
1" Compiler: G95
2" Maintainer: H Xu <[email protected]>
3" Version: 0.1.3
4" Last Change: 2012 Apr 30
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
9if exists('current_compiler')
10    finish
11endif
12let current_compiler = 'g95'
13let s:keepcpo= &cpo
14set cpo&vim
15
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%.%#
26
27let &cpo = s:keepcpo
28unlet s:keepcpo
29