diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-05-02 12:20:57 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-05-02 12:44:04 -0400 |
commit | 7e36c9a2d3ddcb8b31e318e25767cfb32fa69391 (patch) | |
tree | 662e2877850a17068eaededbfe42f26f37a33417 /runtime/compiler | |
parent | abb13dde980b21b39e9d700370e3e82835007cb6 (diff) | |
download | rneovim-7e36c9a2d3ddcb8b31e318e25767cfb32fa69391.tar.gz rneovim-7e36c9a2d3ddcb8b31e318e25767cfb32fa69391.tar.bz2 rneovim-7e36c9a2d3ddcb8b31e318e25767cfb32fa69391.zip |
vim-patch:56994d215815
Update runtime files.
https://github.com/vim/vim/commit/56994d215815139207f3c5ce02a1720e44e93c09
Diffstat (limited to 'runtime/compiler')
-rw-r--r-- | runtime/compiler/cm3.vim | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/runtime/compiler/cm3.vim b/runtime/compiler/cm3.vim new file mode 100644 index 0000000000..3de51282e6 --- /dev/null +++ b/runtime/compiler/cm3.vim @@ -0,0 +1,26 @@ +" Vim compiler file +" Compiler: Critical Mass Modula-3 Compiler +" Maintainer: Doug Kearns <dougkearns@gmail.com> +" Last Change: 2021 Apr 08 + +if exists("current_compiler") + finish +endif +let current_compiler = "cm3" + +if exists(":CompilerSet") != 2 " older Vim always used :setlocal + command -nargs=* CompilerSet setlocal <args> +endif + +let s:cpo_save = &cpo +set cpo&vim + +" TODO: better handling of Quake errors +CompilerSet makeprg=cm3 +CompilerSet errorformat=%D---\ building\ in\ %f\ ---, + \%W\"%f\"\\,\ line\ %l:\ warning:\ %m, + \%E\"%f\"\\,\ line\ %l:\ %m, + \%-G%.%# + +let &cpo = s:cpo_save +unlet s:cpo_save |