Mercurial > vim
annotate runtime/compiler/rubocop.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 | 0db0640e16e0 |
children | e1df51f68736 |
rev | line source |
---|---|
21825 | 1 " Vim compiler file |
2 " Compiler: RuboCop | |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Last Change: 2019 Jul 10 | |
5 | |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "rubocop" | |
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=rubocop\ --format\ emacs | |
19 CompilerSet errorformat=%f:%l:%c:\ %t:\ %m, | |
20 \%-G%.%# | |
21 | |
22 let &cpo = s:cpo_save | |
23 unlet s:cpo_save |