Mercurial > vim
annotate runtime/compiler/jjs.vim @ 21899:8fe86125dcba v8.2.1499
patch 8.2.1499: Vim9: error when using "$" with col()
Commit: https://github.com/vim/vim/commit/ec65d77fa26cc87f7ce54a5a941a799e3a667c50
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Aug 20 22:29:12 2020 +0200
patch 8.2.1499: Vim9: error when using "$" with col()
Problem: Vim9: error when using "$" with col().
Solution: Reorder getting the column value. (closes https://github.com/vim/vim/issues/6744)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 20 Aug 2020 22:30:04 +0200 |
parents | 0db0640e16e0 |
children | e1df51f68736 |
rev | line source |
---|---|
21825 | 1 " Vim compiler file |
2 " Compiler: Nashorn Shell | |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Last Change: 2018 Jan 9 | |
5 | |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "jjs" | |
10 | |
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
12 command -nargs=* CompilerSet setlocal <args> | |
13 endif | |
14 | |
15 let s:cpo_save = &cpo | |
16 set cpo&vim | |
17 | |
18 CompilerSet makeprg=jjs | |
19 CompilerSet errorformat=%f:%l:%c\ %m, | |
20 \%f:%l\ %m, | |
21 \%-G%.%# | |
22 | |
23 let &cpo = s:cpo_save | |
24 unlet s:cpo_save |