ifort.vim (638B)
1 " Compiler: Intel Fortran Compiler 2 " Maintainer: H Xu <xuhdev@gmail.com> 3 " Version: 0.1.1 4 " Last Change: 2012 Apr 30 5 " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition) 6 " 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 10 if exists('current_compiler') 11 finish 12 endif 13 let current_compiler = 'ifort' 14 let s:keepcpo= &cpo 15 set cpo&vim 16 17 CompilerSet errorformat= 18 \%A%f(%l):\ %trror\ \#%n:\ %m, 19 \%A%f(%l):\ %tarning\ \#%n:\ %m, 20 \%-Z%p^, 21 \%-G%.%# 22 23 let &cpo = s:keepcpo 24 unlet s:keepcpo