view runtime/compiler/sml.vim @ 24598:6b85c09a4d73 v8.2.2838

patch 8.2.2838: file extension .wrap not recognized Commit: https://github.com/vim/vim/commit/e3e598e82b79a2ab5ba5e312d54e65c940e2e809 Author: Liam Beguin <liambeguin@gmail.com> Date: Thu May 6 17:45:22 2021 +0200 patch 8.2.2838: file extension .wrap not recognized Problem: File extension .wrap not recognized. Solution: Use dosini filetype for .wrap files. (Liam Beguin, closes https://github.com/vim/vim/issues/8177)
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 May 2021 18:00:04 +0200
parents ef454a7f485d
children c968191a8557
line wrap: on
line source

" 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