diff options
author | Bjorn Neergaard <bjorn@neersighted.com> | 2016-10-11 09:42:50 -0500 |
---|---|---|
committer | Bjorn Neergaard <bjorn@neersighted.com> | 2016-10-11 09:42:50 -0500 |
commit | 572c877a694a6e7c94bd2a252aafb9b67c568914 (patch) | |
tree | 6242bc067ef51d8290c202d3f522fa0eacf7928e /ale_linters/verilog | |
parent | c290e2cd602a20f71880ea1d210797fad2db8000 (diff) | |
download | ale-572c877a694a6e7c94bd2a252aafb9b67c568914.zip |
Default handlers to warning
Diffstat (limited to 'ale_linters/verilog')
-rw-r--r-- | ale_linters/verilog/iverilog.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/verilog/iverilog.vim b/ale_linters/verilog/iverilog.vim index 373c6731..7b0a4b38 100644 --- a/ale_linters/verilog/iverilog.vim +++ b/ale_linters/verilog/iverilog.vim @@ -25,7 +25,7 @@ function! ale_linters#verilog#iverilog#Handle(buffer, lines) endif let l:line = l:match[1] + 0 - let l:type = l:match[2] ==# 'warning' ? 'W' : 'E' + let l:type = l:match[2] ==# 'error' ? 'E' : 'W' let l:text = l:match[2] ==# 'syntax error' ? 'syntax error' : l:match[4] call add(l:output, { |