From 0c472c2244fb7ece0488873b84a22566f74bb00f Mon Sep 17 00:00:00 2001 From: tsuburin Date: Sat, 12 May 2018 15:03:35 +0900 Subject: [PATCH] Added "-wi" to the dmd command to endable warning messages. --- ale_linters/d/dmd.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ale_linters/d/dmd.vim b/ale_linters/d/dmd.vim index b91238a..d64b6c3 100644 --- a/ale_linters/d/dmd.vim +++ b/ale_linters/d/dmd.vim @@ -46,7 +46,7 @@ function! ale_linters#d#dmd#DMDCommand(buffer, dub_output) abort endif endfor - return 'dmd '. join(l:import_list) . ' -o- -vcolumns -c %t' + return 'dmd '. join(l:import_list) . ' -o- -wi -vcolumns -c %t' endfunction function! ale_linters#d#dmd#Handle(buffer, lines) abort