Skip to content

Commit 5946727

Browse files
committed
Set g:OmniSharp_runtests_echo_output default to 0
1 parent b59887a commit 5946727

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/omnisharp-vim.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -373,10 +373,10 @@ Default: atcursor >
373373
3.5 TESTS *omnisharp-test-options*
374374

375375
*g:OmniSharp_runtests_echo_output*
376-
When running unit tests with |:OmniSharpRunTest| and |:OmniSharpRunTestsInFile|,
377-
echo all test runner output to the |message-history|, so it can be viewed with
378-
|:messages|.
379-
Default: 1
376+
When running unit tests with |:OmniSharpRunTest| and |:OmniSharpRunTestsInFile|
377+
or from the test runner, echo all test runner output to the |message-history|,
378+
so it can be viewed with |:messages|.
379+
Default: 0
380380

381381
*g:OmniSharp_runtests_parallel*
382382
When running multiple unit test files with |:OmniSharpRunTestsInFile|, run

plugin/OmniSharp.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ let g:OmniSharp_loglevel = get(g:, 'OmniSharp_loglevel', defaultlevel)
3939
let g:OmniSharp_diagnostic_listen = get(g:, 'OmniSharp_diagnostic_listen', 2)
4040

4141
let g:OmniSharp_runtests_parallel = get(g:, 'OmniSharp_runtests_parallel', 1)
42-
let g:OmniSharp_runtests_echo_output = get(g:, 'OmniSharp_runtests_echo_output', 1)
42+
let g:OmniSharp_runtests_echo_output = get(g:, 'OmniSharp_runtests_echo_output', 0)
4343

4444
" Set to 1 when ultisnips is installed
4545
let g:OmniSharp_want_snippet = get(g:, 'OmniSharp_want_snippet', 0)

0 commit comments

Comments
 (0)