comparison runtime/compiler/msvc.vim @ 349:028158b1362b v7.0090

updated for version 7.0090
author vimboss
date Wed, 22 Jun 2005 22:37:09 +0000
parents 3fc0f57ecb91
children 2244be18d9e9
comparison
equal deleted inserted replaced
348:7e819e81117e 349:028158b1362b
1 " Vim compiler file 1 " Vim compiler file
2 " Compiler: Miscrosoft Visual C 2 " Compiler: Miscrosoft Visual C
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last Change: 2004 Mar 19 4 " Last Change: 2005 Jun 22
5 5
6 if exists("current_compiler") 6 if exists("current_compiler")
7 finish 7 finish
8 endif 8 endif
9 let current_compiler = "msvc" 9 let current_compiler = "msvc"
10 10
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
12 command -nargs=* CompilerSet setlocal <args>
13 endif
14
15 " The errorformat for MSVC is the default. 11 " The errorformat for MSVC is the default.
16 CompilerSet errorformat& 12 setlocal errorformat&
17 CompilerSet makeprg=nmake 13 setlocal makeprg=nmake