annotate runtime/compiler/ifort.vim @ 27770:219471ed2fec v8.2.4411

patch 8.2.4411: bicep files are not recognized Commit: https://github.com/vim/vim/commit/8e5ba693ad9377fbf4b047093624248b81eac854 Author: =?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com> Date: Thu Feb 17 21:30:26 2022 +0000 patch 8.2.4411: bicep files are not recognized Problem: Bicep files are not recognized. Solution: Match *.bicep files. (Dundar Goc, closes https://github.com/vim/vim/issues/9791)
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Feb 2022 22: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