diff options
Diffstat (limited to 'runtime/compiler/msvc.vim')
-rw-r--r-- | runtime/compiler/msvc.vim | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/runtime/compiler/msvc.vim b/runtime/compiler/msvc.vim new file mode 100644 index 0000000..0d5660c --- /dev/null +++ b/runtime/compiler/msvc.vim @@ -0,0 +1,14 @@ +" Vim compiler file +" Compiler: Microsoft Visual C +" Maintainer: The Vim Project <https://github.com/vim/vim> +" Last Change: 2023 Aug 10 +" Former Maintainer: Bram Moolenaar <Bram@vim.org> + +if exists("current_compiler") + finish +endif +let current_compiler = "msvc" + +" The errorformat for MSVC is the default. +CompilerSet errorformat& +CompilerSet makeprg=nmake |