Mercurial > vim-crosoft
comparison autoload/vimcrosoft.vim @ 11:096e80c13781
Use the correct documentation extension.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 22 Jan 2021 16:42:25 -0800 |
parents | ff4590b2503a |
children | 1639be0967d6 |
comparison
equal
deleted
inserted
replaced
10:f444739dd8af | 11:096e80c13781 |
---|---|
60 call vimcrosoft#error("Couldn't find MSBuild anywhere in:\n". | 60 call vimcrosoft#error("Couldn't find MSBuild anywhere in:\n". |
61 \string(l:installdirs)) | 61 \string(l:installdirs)) |
62 return 0 | 62 return 0 |
63 endfunction | 63 endfunction |
64 | 64 |
65 function! vimcrosoft#get_msbuild_errorformat() abort | |
66 " MSBuild error formats look like this: | |
67 " Path\To\Source\Filename.cpp|53| error C2065: 'MyClass': undeclared identifier [Path\To\MyProject.vcxproj] | |
68 return '%*[^\ ]\ %f\|%l\|\ %trror\ \D%n:\ %m\ [%o]' | |
69 " \'\|\|\ %f\|%l\|\ %tarning\ \D%n:\ %m\ [%o]' | |
70 endfunction | |
71 | |
65 " }}} | 72 " }}} |
66 | 73 |
67 " Cache Files {{{ | 74 " Cache Files {{{ |
68 | 75 |
69 function! vimcrosoft#get_sln_cache_dir(...) abort | 76 function! vimcrosoft#get_sln_cache_dir(...) abort |