Mercurial > vim
annotate runtime/compiler/dartdevc.vim @ 30243:b57d52934160 v9.0.0457
patch 9.0.0457: substitute prompt does not highlight an empty match
Commit: https://github.com/vim/vim/commit/a04f457a6c071179bac4088c9314007d39d5c5e0
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 13 13:45:26 2022 +0100
patch 9.0.0457: substitute prompt does not highlight an empty match
Problem: Substitute prompt does not highlight an empty match.
Solution: Highlight at least one character.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 13 Sep 2022 15:00:05 +0200 |
parents | d4c7b3e9cd17 |
children | e1df51f68736 |
rev | line source |
---|---|
22171 | 1 " Vim compiler file |
2 " Compiler: Dart Development Compiler | |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Last Change: 2019 May 08 | |
5 | |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "dartdevc" | |
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=dartdevc | |
19 CompilerSet errorformat=%E%f:%l:%c:\ Error:\ %m, | |
20 \%CTry\ %.%#, | |
21 \%Z\ %#^%\\+, | |
22 \%Z%$, | |
23 \%C%.%#, | |
24 \%E%f:\ %trror:\ %m, | |
25 \%-G%.%# | |
26 | |
27 let &cpo = s:cpo_save | |
28 unlet s:cpo_save |