comparison runtime/compiler/g95.vim @ 2751:b0d34143ebfc

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Fri, 01 Apr 2011 18:03:16 +0200
parents
children d1e4abe8342c
comparison
equal deleted inserted replaced
2750:66fe19b3c59a 2751:b0d34143ebfc
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%.%#