annotate runtime/compiler/sml.vim @ 35348:1f56105832f2 default tip

runtime(man): disable the q mapping Commit: https://github.com/vim/vim/commit/6dcd7f1a4d6d216798963edce9de69d03092433f Author: Christian Brabandt <cb@256bit.org> Date: Thu Jun 6 19:06:38 2024 +0200 runtime(man): disable the q mapping fixes: https://github.com/vim/vim/issues/8210 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 06 Jun 2024 19:30:03 +0200
parents e1df51f68736
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
24024
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim compiler file
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Compiler: SML/NJ Compiler
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
34778
e1df51f68736 runtime: Remove fallback :CompilerSet definition from compiler plugins
Christian Brabandt <cb@256bit.org>
parents: 28010
diff changeset
4 " Last Change: 2024 Apr 03
24024
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 if exists("current_compiler")
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 finish
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 endif
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 let current_compiler = "sml"
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 let s:cpo_save = &cpo
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 set cpo&vim
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 CompilerSet makeprg=sml
28010
c968191a8557 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24024
diff changeset
15 CompilerSet errorformat=%f:%l.%c-%e.%k\ %trror:\ %m,
24024
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 \%f:%l.%c\ %trror:\ %m,
28010
c968191a8557 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24024
diff changeset
17 \%trror:\ %m,
c968191a8557 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24024
diff changeset
18 \%f:%l.%c-%e.%k\ %tarning:\ %m,
24024
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 \%f:%l.%c\ %tarning:\ %m,
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 \%tarning:\ %m,
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 \%-G%.%#
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 let &cpo = s:cpo_save
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 unlet s:cpo_save