Mercurial > vim
view runtime/compiler/fortran_F.vim @ 33515:f41bdc22abcd v9.0.2006
patch 9.0.2006: Vim9: need more tests
Commit: https://github.com/vim/vim/commit/f4ee1cb74ba86383190ffcda84147892f7740f21
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Mon Oct 9 17:57:27 2023 +0200
patch 9.0.2006: Vim9: need more tests
Problem: Vim9: need more tests
Solution: add additional disassembly tests
closes: #13305
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 09 Oct 2023 18:00:10 +0200 |
parents | 3fc0f57ecb91 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: Fortran Company/NAGWare F compiler " URL: http://www.unb.ca/chem/ajit/compiler/fortran_F.vim " Maintainer: Ajit J. Thakkar (ajit AT unb.ca); <http://www.unb.ca/chem/ajit/> " Version: 0.2 " Last Change: 2004 Mar 27 if exists("current_compiler") finish endif let current_compiler = "fortran_F" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cposet=&cpoptions set cpoptions-=C CompilerSet errorformat=%trror:\ %f\\,\ line\ %l:%m, \%tarning:\ %f\\,\ line\ %l:%m, \%tatal\ Error:\ %f\\,\ line\ %l:%m, \%-G%.%# CompilerSet makeprg=F let &cpoptions=s:cposet unlet s:cposet