We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96f39a2 commit fbca4eeCopy full SHA for fbca4ee
autoload/OmniSharp/actions/test.vim
@@ -22,6 +22,10 @@ function! s:CBRunTest(summary) abort
22
if a:summary.pass
23
if len(a:summary.locations) == 0
24
echomsg 'No tests were run'
25
+ elseif a:summary.locations[0].type ==# 'W'
26
+ echohl WarningMsg
27
+ echomsg a:summary.locations[0].name . ': skipped'
28
+ echohl None
29
else
30
echohl Title
31
echomsg a:summary.locations[0].name . ': passed'
0 commit comments