1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-04-01 07:26:44 +02:00
vim/runtime/compiler/sml.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
527 B
VimL
Raw Normal View History

2021-02-27 16:38:07 +01:00
" Vim compiler file
" Compiler: SML/NJ Compiler
" Maintainer: Doug Kearns <dougkearns@gmail.com>
" Last Change: 2024 Apr 03
2021-02-27 16:38:07 +01:00
if exists("current_compiler")
finish
endif
let current_compiler = "sml"
let s:cpo_save = &cpo
set cpo&vim
CompilerSet makeprg=sml
2022-03-08 21:35:07 +00:00
CompilerSet errorformat=%f:%l.%c-%e.%k\ %trror:\ %m,
2021-02-27 16:38:07 +01:00
\%f:%l.%c\ %trror:\ %m,
2022-03-08 21:35:07 +00:00
\%trror:\ %m,
\%f:%l.%c-%e.%k\ %tarning:\ %m,
2021-02-27 16:38:07 +01:00
\%f:%l.%c\ %tarning:\ %m,
\%tarning:\ %m,
\%-G%.%#
let &cpo = s:cpo_save
unlet s:cpo_save