gfortran.vim (619B)
1 " Compiler: GNU Fortran Compiler 2 " Maintainer: H Xu <xuhdev@gmail.com> 3 " Version: 0.1.3 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=3496 7 " https://bitbucket.org/xuhdev/compiler-gfortran.vim 8 " License: Same as Vim 9 10 if exists('current_compiler') 11 finish 12 endif 13 let current_compiler = 'gfortran' 14 let s:keepcpo= &cpo 15 set cpo&vim 16 17 CompilerSet errorformat= 18 \%A%f:%l.%c:, 19 \%-Z%trror:\ %m, 20 \%-Z%tarning:\ %m, 21 \%-C%.%# 22 23 let &cpo = s:keepcpo 24 unlet s:keepcpo