aboutsummaryrefslogtreecommitdiff
path: root/runtime/compiler
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-05-02 10:19:25 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-05-02 10:23:35 -0400
commit6a8436065ca7282569fd4d96b1c02a8ba8eaacf1 (patch)
tree57c7c58d216376a56fa65e217a80177624a5619f /runtime/compiler
parent2081504a331f2ca97922056f6b42b8d0e6c2e306 (diff)
downloadrneovim-6a8436065ca7282569fd4d96b1c02a8ba8eaacf1.tar.gz
rneovim-6a8436065ca7282569fd4d96b1c02a8ba8eaacf1.tar.bz2
rneovim-6a8436065ca7282569fd4d96b1c02a8ba8eaacf1.zip
vim-patch:9faec4e3d439
Update runtime files. https://github.com/vim/vim/commit/9faec4e3d439968e21ad74e917aebb289df8f849 Omit vim9.
Diffstat (limited to 'runtime/compiler')
-rw-r--r--runtime/compiler/sml.vim28
1 files changed, 28 insertions, 0 deletions
diff --git a/runtime/compiler/sml.vim b/runtime/compiler/sml.vim
new file mode 100644
index 0000000000..c7e1b1bf16
--- /dev/null
+++ b/runtime/compiler/sml.vim
@@ -0,0 +1,28 @@
+" Vim compiler file
+" Compiler: SML/NJ Compiler
+" Maintainer: Doug Kearns <dougkearns@gmail.com>
+" Last Change: 2020 Feb 10
+
+if exists("current_compiler")
+ finish
+endif
+let current_compiler = "sml"
+
+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=sml
+CompilerSet errorformat=%f:%l.%c-%\\d%\\+.%\\d%\\+\ %trror:\ %m,
+ \%f:%l.%c\ %trror:\ %m,
+ \%trror:\ %m
+ \%f:%l.%c-%\\d%\\+.%\\d%\\+\ %tarning:\ %m,
+ \%f:%l.%c\ %tarning:\ %m,
+ \%tarning:\ %m,
+ \%-G%.%#
+
+let &cpo = s:cpo_save
+unlet s:cpo_save