annotate runtime/compiler/msbuild.vim @ 14563:d84e67a12671 v8.1.0295

patch 8.1.0295: no 'incsearch' highlighting for :vimgrep and similar commit https://github.com/vim/vim/commit/264cf5cfaf40e704aea2578e70c15ed9a9d0161e Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 18 21:05:31 2018 +0200 patch 8.1.0295: no 'incsearch' highlighting for :vimgrep and similar Problem: No 'incsearch' highlighting for :vimgrep and similar commands. Solution: Parse the :vimgrep command and similar ones to locate the search pattern. (Hirohito Higashi, closes #3344)
author Christian Brabandt <cb@256bit.org>
date Sat, 18 Aug 2018 21:15:05 +0200
parents eb6ab7e78925
children e1df51f68736
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4437
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 " Vim compiler file
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 " Compiler: Microsoft Visual Studio C#
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 " Maintainer: Chiel ten Brinke (ctje92@gmail.com)
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 " Last Change: 2013 May 13
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 if exists("current_compiler")
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 finish
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 endif
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 let current_compiler = "msbuild"
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 let s:keepcpo= &cpo
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 set cpo&vim
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 command -nargs=* CompilerSet setlocal <args>
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 endif
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17 CompilerSet errorformat=\ %#%f(%l\\\,%c):\ %m
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
18 CompilerSet makeprg=msbuild\ /nologo\ /v:q\ /property:GenerateFullPaths=true
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 let &cpo = s:keepcpo
eb6ab7e78925 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 unlet s:keepcpo