annotate runtime/compiler/msbuild.vim @ 13282:8db0345053b9 v8.0.1515

patch 8.0.1515: BufWinEnter event fired when opening hidden terminal commit https://github.com/vim/vim/commit/ab5e7c3deb40328e1c7d40534ed8cd9da47a92f8 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 13 14:07:18 2018 +0100 patch 8.0.1515: BufWinEnter event fired when opening hidden terminal Problem: BufWinEnter event fired when opening hidden terminal. Solution: Do not fire BufWinEnter when the terminal is midden and does not open a window. (Kenta Sato, closes #2636)
author Christian Brabandt <cb@256bit.org>
date Tue, 13 Feb 2018 14:15:06 +0100
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