annotate runtime/compiler/icc.vim @ 13998:c3f9c37160e7
v8.1.0017
patch 8.1.0017: shell command completion has duplicates
commit https://github.com/vim/vim/commit/62fe66f251263715968442e237742d9d3dfd5fa1
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue May 22 16:58:47 2018 +0200
patch 8.1.0017: shell command completion has duplicates
Problem: Shell command completion has duplicates. (Yegappan Lakshmanan)
Solution: Use a hash table to avoid duplicates. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/539,
closes #2733)
author |
Christian Brabandt <cb@256bit.org> |
date |
Tue, 22 May 2018 17:00:06 +0200 |
parents |
3fc0f57ecb91 |
children |
e1df51f68736 |
rev |
line source |
7
|
1 " Vim compiler file
|
|
2 " Compiler: icc - Intel C++
|
|
3 " Maintainer: Peter Puck <PtrPck@netscape.net>
|
|
4 " Last Change: 2004 Mar 27
|
|
5
|
|
6 if exists("current_compiler")
|
|
7 finish
|
|
8 endif
|
|
9 let current_compiler = "icc"
|
|
10
|
|
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
|
|
12 command -nargs=* CompilerSet setlocal <args>
|
|
13 endif
|
|
14
|
|
15 " I think that Intel is calling the compiler icl under Windows
|
|
16
|
|
17 CompilerSet errorformat=%-Z%p^,%f(%l):\ remark\ #%n:%m,%f(%l)\ :\ (col.\ %c)\ remark:\ %m,%E%f(%l):\ error:\ %m,%E%f(%l):\ error:\ #%n:\ %m,%W%f(%l):\ warning\ #%n:\ %m,%W%f(%l):\ warning:\ %m,%-C%.%#
|
|
18
|