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 a32a4b0 commit 78a8e59Copy full SHA for 78a8e59
autoload/OmniSharp/testrunner.vim
@@ -235,6 +235,7 @@ function! s:buffer.paint() abort
235
let lines = []
236
endif
237
for key in sort(keys(s:tests))
238
+ if !s:tests[key].visible | continue | endif
239
call extend(lines, self.paintproject(key))
240
for testfile in sort(keys(s:tests[key].files))
241
if !s:tests[key].files[testfile].visible | continue | endif
@@ -276,9 +277,6 @@ endfunction
276
277
278
function! s:buffer.paintproject(key) abort
279
let [assembly, sln] = split(a:key, ';')
- if !s:tests[a:key].visible
280
- return []
281
- endif
282
283
call add(lines, a:key . (len(s:tests[a:key].errors) ? ' ERROR' : ''))
284
for errorline in s:tests[a:key].errors
0 commit comments