aboutsummaryrefslogtreecommitdiff
path: root/runtime/compiler
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-06-17 20:38:21 +0200
committerGitHub <noreply@github.com>2022-06-17 20:38:21 +0200
commite651ae5864503d219134c7c0124bff6bd9a663f7 (patch)
tree3e7a6b01a194a8850c7dbbed109bcb95eba6543b /runtime/compiler
parent98e2da7d50b8f22edb20cdb744788ef0085d0cb6 (diff)
downloadrneovim-e651ae5864503d219134c7c0124bff6bd9a663f7.tar.gz
rneovim-e651ae5864503d219134c7c0124bff6bd9a663f7.tar.bz2
rneovim-e651ae5864503d219134c7c0124bff6bd9a663f7.zip
vim-patch:d592deb33652 (#19002)
Update runtime files https://github.com/vim/vim/commit/d592deb336523a5448779ee3d4bba80334cff1f7
Diffstat (limited to 'runtime/compiler')
-rw-r--r--runtime/compiler/icon.vim33
1 files changed, 33 insertions, 0 deletions
diff --git a/runtime/compiler/icon.vim b/runtime/compiler/icon.vim
new file mode 100644
index 0000000000..40f67930f7
--- /dev/null
+++ b/runtime/compiler/icon.vim
@@ -0,0 +1,33 @@
+" Vim compiler file
+" Compiler: Icon Compiler
+" Maintainer: Doug Kearns <dougkearns@gmail.com>
+" Last Change: 2022 Jun 16
+
+if exists("current_compiler")
+ finish
+endif
+let current_compiler = "icont"
+
+if exists(":CompilerSet") != 2 " older Vim always used :setlocal
+ command -nargs=* CompilerSet setlocal <args>
+endif
+
+let s:cpo_save = &cpo
+set cpo&vim
+
+CompilerSet makeprg=icont\ -s
+CompilerSet errorformat=%-G%\\d%\\+\ errors%\\=,
+ \%ERun-time\ error\ %n,
+ \%ERun-time\ error\ %n\ in\ %m,
+ \%ZTraceback:,
+ \%+Coffending\ value:\ %.%#,
+ \%CFile\ %f;\ Line\ %l,
+ \%EFile\ %f;\ Line\ %l\ #\ %m,
+ \%EFile\ %f;\ %m,
+ \%E%f:%l:\ #\ %m,
+ \%E%f:\ %m,
+ \%+C%.%#,
+ \%-G%.%#
+
+let &cpo = s:cpo_save
+unlet s:cpo_save