blob: 8c58ba685dca59e613c758c59a95e1fe7ad474bd [file] [log] [blame]
Bram Moolenaaradc21822011-04-01 18:03:16 +02001" Compiler: Intel Fortran Compiler
2" Maintainer: H Xu <xuhdev@gmail.com>
3" Version: 0.1.1
Bram Moolenaar9a7224b2012-04-30 15:56:52 +02004" Last Change: 2012 Apr 30
Doug Kearns408281e2024-04-04 22:00:58 +02005" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
Bram Moolenaaradc21822011-04-01 18:03:16 +02006" Homepage: http://www.vim.org/scripts/script.php?script_id=3497
7" https://bitbucket.org/xuhdev/compiler-ifort.vim
8" License: Same as Vim
9
10if exists('current_compiler')
11 finish
12endif
13let current_compiler = 'ifort'
Bram Moolenaar9a7224b2012-04-30 15:56:52 +020014let s:keepcpo= &cpo
15set cpo&vim
Bram Moolenaaradc21822011-04-01 18:03:16 +020016
Bram Moolenaaradc21822011-04-01 18:03:16 +020017CompilerSet errorformat=
18 \%A%f(%l):\ %trror\ \#%n:\ %m,
19 \%A%f(%l):\ %tarning\ \#%n:\ %m,
20 \%-Z%p^,
21 \%-G%.%#
Bram Moolenaar9a7224b2012-04-30 15:56:52 +020022
23let &cpo = s:keepcpo
24unlet s:keepcpo