summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortsuburin <tsuburin@gmail.com>2018-05-12 15:03:35 +0900
committertsuburin <tsuburin@gmail.com>2018-05-12 15:03:35 +0900
commit0c472c2244fb7ece0488873b84a22566f74bb00f (patch)
treeb28ddbb84863b86bbd273012c4222b691a6d348c
parent38c66d33fe8022803497c49239b06112ccbd0a83 (diff)
downloadale-0c472c2244fb7ece0488873b84a22566f74bb00f.zip
Added "-wi" to the dmd command to endable warning messages.
-rw-r--r--ale_linters/d/dmd.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/d/dmd.vim b/ale_linters/d/dmd.vim
index b91238ae..d64b6c3d 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