diff options
author | Atsuya Takagi <asoftonight@gmail.com> | 2021-01-02 17:28:06 +0900 |
---|---|---|
committer | Atsuya Takagi <asoftonight@gmail.com> | 2021-01-23 00:08:01 +0900 |
commit | c15d9538cda6ac4bc7cd258b2a0a271ed22ac350 (patch) | |
tree | 74a62ae5712e6077adcce60b530010103063af19 /ale_linters | |
parent | b3010ad7930344a06163a99182c21e4c768f8a23 (diff) | |
download | ale-c15d9538cda6ac4bc7cd258b2a0a271ed22ac350.zip |
use the correct regex to match the escape sequences...
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/vala/vala_lint.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ale_linters/vala/vala_lint.vim b/ale_linters/vala/vala_lint.vim index 0940f294..b0c86fcc 100644 --- a/ale_linters/vala/vala_lint.vim +++ b/ale_linters/vala/vala_lint.vim @@ -12,9 +12,7 @@ function! ale_linters#vala#vala_lint#Handle(buffer, lines) abort for l:line in a:lines " remove color escape sequences since vala-lint doesn't support " output without colors - let l:cleaned_line = substitute(l:line, '\x1b\[[0-9;]*m', '', 'g') - execute 'echo l:line' - execute 'echo l:cleaned_line' + let l:cleaned_line = substitute(l:line, '\e\[[0-9;]\+[mK]', '', 'g') let l:match = matchlist(l:cleaned_line, l:pattern) if len(l:match) == 0 |