diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-12-08 16:33:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-08 16:33:38 +0100 |
commit | 35767769036671d5ce562f53cae574f9c66e4bb2 (patch) | |
tree | 5c2b943ea25ece5b25fd862f1daed4e125197ee3 /runtime/compiler/dotnet.vim | |
parent | 7b9ad45178fc2f53c4824ad42213c340bdd66ebf (diff) | |
download | rneovim-35767769036671d5ce562f53cae574f9c66e4bb2.tar.gz rneovim-35767769036671d5ce562f53cae574f9c66e4bb2.tar.bz2 rneovim-35767769036671d5ce562f53cae574f9c66e4bb2.zip |
vim-patch:86b4816766d9 (#21314)
Update runtime files
https://github.com/vim/vim/commit/86b4816766d976a7ecd4403eca1f8bf6b4105800
vim-patch:9.0.1029: autoload directory missing from distribution
Problem: Autoload directory missing from distribution.
Solution: Add the autoload/zig directory to the list of distributed files.
https://github.com/vim/vim/commit/84dbf855fb2d883481f74ad0ccf3df3f8837e6bf
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'runtime/compiler/dotnet.vim')
-rw-r--r-- | runtime/compiler/dotnet.vim | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/runtime/compiler/dotnet.vim b/runtime/compiler/dotnet.vim new file mode 100644 index 0000000000..ac64084663 --- /dev/null +++ b/runtime/compiler/dotnet.vim @@ -0,0 +1,39 @@ +" Vim compiler file +" Compiler: dotnet build (.NET CLI) +" Maintainer: Nick Jensen <nickspoon@gmail.com> +" Last Change: 2022-12-06 +" License: Vim (see :h license) +" Repository: https://github.com/nickspoons/vim-cs + +if exists("current_compiler") + finish +endif +let current_compiler = "dotnet" + +if exists(":CompilerSet") != 2 " older Vim always used :setlocal + command -nargs=* CompilerSet setlocal <args> +endif + +let s:cpo_save = &cpo +set cpo&vim + +if get(g:, "dotnet_errors_only", v:false) + CompilerSet makeprg=dotnet\ build\ -nologo + \\ -consoleloggerparameters:NoSummary + \\ -consoleloggerparameters:ErrorsOnly +else + CompilerSet makeprg=dotnet\ build\ -nologo\ -consoleloggerparameters:NoSummary +endif + +if get(g:, "dotnet_show_project_file", v:true) + CompilerSet errorformat=%E%f(%l\\,%c):\ %trror\ %m, + \%W%f(%l\\,%c):\ %tarning\ %m, + \%-G%.%# +else + CompilerSet errorformat=%E%f(%l\\,%c):\ %trror\ %m\ [%.%#], + \%W%f(%l\\,%c):\ %tarning\ %m\ [%.%#], + \%-G%.%# +endif + +let &cpo = s:cpo_save +unlet s:cpo_save |