Skip to content

Commit 24bdba7

Browse files
committed
Set g:OmniSharp_runtests_echo_output default to 0
1 parent 9f6330c commit 24bdba7

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
@@ -374,10 +374,10 @@ Default: atcursor >
374374
3.5 TESTS *omnisharp-test-options*
375375

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

382382
*g:OmniSharp_runtests_parallel*
383383
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)