neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

fortran_cv.vim (697B)


      1 " Vim compiler file
      2 " Compiler:	Compaq Visual Fortran
      3 " Maintainer:	Joh.-G. Simon (johann-guenter.simon@linde-le.com)
      4 " Last Change:	11/05/2002
      5 "		2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
      6 
      7 if exists("current_compiler")
      8  finish
      9 endif
     10 let current_compiler = "fortran_cv"
     11 
     12 let s:cposet = &cpoptions
     13 set cpoptions-=C
     14 
     15 " A workable errorformat for Compaq Visual Fortran
     16 CompilerSet errorformat=
     17 	\%E%f(%l)\ :\ Error:%m,
     18 	\%W%f(%l)\ :\ Warning:%m,
     19 	\%-Z%p%^%.%#,
     20 	\%-G%.%#,
     21 " Compiler call
     22 CompilerSet makeprg=df\ /nologo\ /noobj\ /c\ %:S
     23 " Visual fortran defaults to printing output on stderr
     24 " Adjust option shellpipe accordingly
     25 
     26 let &cpoptions = s:cposet
     27 unlet s:cposet