From 93cd44e2ecf471e8312ba565cd9ffcfe43e5a6c5 Mon Sep 17 00:00:00 2001 From: Bjorn Neergaard Date: Tue, 11 Oct 2016 12:08:31 -0500 Subject: Match both error and syntax error in verilog --- ale_linters/verilog/iverilog.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ale_linters') diff --git a/ale_linters/verilog/iverilog.vim b/ale_linters/verilog/iverilog.vim index 7b0a4b38..ec37df14 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] ==# 'error' ? 'E' : 'W' + 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, { -- cgit v1.2.3