Mercurial > vim
view runtime/compiler/fortran_cv.vim @ 10147:65afd399ffa7 v7.4.2344
commit https://github.com/vim/vim/commit/169ebb080454357279ad5ad21ac532deaec605e8
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Sep 7 23:32:23 2016 +0200
patch 7.4.2344
Problem: The "Reading from channel output..." message can be unwanted.
Appending to a buffer leaves an empty first line behind.
Solution: Add the "out_msg" and "err_msg" options. Writing the first line
overwrites the first, empty line.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 07 Sep 2016 23:45:05 +0200 |
parents | 3fc0f57ecb91 |
children | 2704c4e3e20a |
line wrap: on
line source
" Vim compiler file " Compiler: Compaq Visual Fortran " Maintainer: Joh.-G. Simon (johann-guenter.simon@linde-le.com) " Last Change: 11/05/2002 if exists("current_compiler") finish endif let current_compiler = "fortran_cv" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cposet = &cpoptions set cpoptions-=C " A workable errorformat for Compaq Visual Fortran CompilerSet errorformat= \%E%f(%l)\ :\ Error:%m, \%W%f(%l)\ :\ Warning:%m, \%-Z%p%^%.%#, \%-G%.%#, " Compiler call CompilerSet makeprg=df\ /nologo\ /noobj\ /c\ % " Visual fortran defaults to printing output on stderr " Adjust option shellpipe accordingly let &cpoptions = s:cposet unlet s:cposet