Mercurial > vim
annotate runtime/compiler/gfortran.vim @ 29542:61b400b5e1a8 v9.0.0112
patch 9.0.0112: MS-Windows: test fails because file already exists
Commit: https://github.com/vim/vim/commit/0f823c360947779d9de6048c6bce51c670a06eb6
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jul 30 15:35:12 2022 +0100
patch 9.0.0112: MS-Windows: test fails because file already exists
Problem: MS-Windows: test fails because file already exists.
Solution: Wait a little while until the file is gone.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 30 Jul 2022 16:45:04 +0200 |
parents | d1e4abe8342c |
children | e1df51f68736 |
rev | line source |
---|---|
2751 | 1 " Compiler: GNU Fortran Compiler |
2 " Maintainer: H Xu <xuhdev@gmail.com> | |
3 " Version: 0.1.3 | |
3496
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2751
diff
changeset
|
4 " Last Change: 2012 Apr 30 |
2751 | 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 | |
9 if exists('current_compiler') | |
10 finish | |
11 endif | |
12 let current_compiler = 'gfortran' | |
3496
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2751
diff
changeset
|
13 let s:keepcpo= &cpo |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2751
diff
changeset
|
14 set cpo&vim |
2751 | 15 |
16 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
17 command -nargs=* CompilerSet setlocal <args> | |
18 endif | |
19 | |
20 CompilerSet errorformat= | |
21 \%A%f:%l.%c:, | |
22 \%-Z%trror:\ %m, | |
23 \%-Z%tarning:\ %m, | |
24 \%-C%.%# | |
3496
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2751
diff
changeset
|
25 |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2751
diff
changeset
|
26 let &cpo = s:keepcpo |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2751
diff
changeset
|
27 unlet s:keepcpo |