diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-06-17 20:38:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-17 20:38:21 +0200 |
commit | e651ae5864503d219134c7c0124bff6bd9a663f7 (patch) | |
tree | 3e7a6b01a194a8850c7dbbed109bcb95eba6543b /runtime/compiler | |
parent | 98e2da7d50b8f22edb20cdb744788ef0085d0cb6 (diff) | |
download | rneovim-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.vim | 33 |
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 |