annotate runtime/compiler/sml.vim @ 25172:406ab8d0bc0f v8.2.3122

patch 8.2.3122: with 'nowrap' cursor position is unexected in narrow window Commit: https://github.com/vim/vim/commit/30441bb3d5fa73f888b09684db3f54ff5ab48dbc Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 8 13:19:31 2021 +0200 patch 8.2.3122: with 'nowrap' cursor position is unexected in narrow window Problem: With 'nowrap' cursor position is unexected in narrow window. (Leonid V. Fedorenchik) Solution: Put cursor on the last non-empty line. (closes #8525)
author Bram Moolenaar <Bram@vim.org>
date Thu, 08 Jul 2021 13:30:04 +0200
parents ef454a7f485d
children c968191a8557
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>
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " Last Change: 2020 Feb 10
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 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 command -nargs=* CompilerSet setlocal <args>
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 endif
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 let s:cpo_save = &cpo
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 set cpo&vim
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 CompilerSet makeprg=sml
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 CompilerSet errorformat=%f:%l.%c-%\\d%\\+.%\\d%\\+\ %trror:\ %m,
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 \%f:%l.%c\ %trror:\ %m,
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 \%trror:\ %m
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 \%f:%l.%c-%\\d%\\+.%\\d%\\+\ %tarning:\ %m,
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 \%f:%l.%c\ %tarning:\ %m,
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 \%tarning:\ %m,
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 \%-G%.%#
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 let &cpo = s:cpo_save
ef454a7f485d Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 unlet s:cpo_save