annotate runtime/compiler/ifort.vim @ 19728:41a1ea967a97 v8.2.0420

patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C Commit: https://github.com/vim/vim/commit/f1ec378b014efb9897422c40369a6462163a512a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 20 19:37:47 2020 +0100 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C Problem: Vim9: cannot interrupt a loop with CTRL-C. Solution: Check for CTRL-C once in a while. Doesn't fully work yet.
author Bram Moolenaar <Bram@vim.org>
date Fri, 20 Mar 2020 19:45:03 +0100
parents d1e4abe8342c
children e1df51f68736
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2751
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 " Compiler: Intel Fortran Compiler
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 " Maintainer: H Xu <xuhdev@gmail.com>
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 " Version: 0.1.1
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
4 " Last Change: 2012 Apr 30
2751
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 " Homepage: http://www.vim.org/scripts/script.php?script_id=3497
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 " https://bitbucket.org/xuhdev/compiler-ifort.vim
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 " License: Same as Vim
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 if exists('current_compiler')
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 finish
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 endif
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 let current_compiler = 'ifort'
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
13 let s:keepcpo= &cpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
14 set cpo&vim
2751
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17 command -nargs=* CompilerSet setlocal <args>
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
18 endif
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 CompilerSet errorformat=
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 \%A%f(%l):\ %trror\ \#%n:\ %m,
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22 \%A%f(%l):\ %tarning\ \#%n:\ %m,
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
23 \%-Z%p^,
b0d34143ebfc Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
24 \%-G%.%#
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
25
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
26 let &cpo = s:keepcpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2751
diff changeset
27 unlet s:keepcpo