Mercurial > vim
view runtime/compiler/ifort.vim @ 11099:613d9bcd7a52 v8.0.0437
patch 8.0.0437: packadd test does not fully work
commit https://github.com/vim/vim/commit/644df41c44cbdfacdedbba55ef77a6c6031eccd8
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Mar 9 13:58:02 2017 +0100
patch 8.0.0437: packadd test does not fully work
Problem: The packadd test does not create the symlink correctly and does
not test the right thing.
Solution: Create the directory and symlink correctly.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 09 Mar 2017 14:00:06 +0100 |
parents | d1e4abe8342c |
children | e1df51f68736 |
line wrap: on
line source
" Compiler: Intel Fortran Compiler " Maintainer: H Xu <xuhdev@gmail.com> " Version: 0.1.1 " Last Change: 2012 Apr 30 " Homepage: http://www.vim.org/scripts/script.php?script_id=3497 " https://bitbucket.org/xuhdev/compiler-ifort.vim " License: Same as Vim if exists('current_compiler') finish endif let current_compiler = 'ifort' let s:keepcpo= &cpo set cpo&vim if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif CompilerSet errorformat= \%A%f(%l):\ %trror\ \#%n:\ %m, \%A%f(%l):\ %tarning\ \#%n:\ %m, \%-Z%p^, \%-G%.%# let &cpo = s:keepcpo unlet s:keepcpo