summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-10-25 00:58:10 +0100
committerw0rp <devw0rp@gmail.com>2017-10-25 00:58:16 +0100
commit5029078df3d5d26d71d220d273a001a5aea9c416 (patch)
tree20aa774309874bf9e37e50fbe4e31d4c38aeb56a /autoload
parent94bdabb8c3c6445249c0e3bac5b7bcf159fd49f3 (diff)
downloadale-5029078df3d5d26d71d220d273a001a5aea9c416.zip
Set better highlights for write-good
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/handlers/writegood.vim33
1 files changed, 22 insertions, 11 deletions
diff --git a/autoload/ale/handlers/writegood.vim b/autoload/ale/handlers/writegood.vim
index c26eb207..f9d452ea 100644
--- a/autoload/ale/handlers/writegood.vim
+++ b/autoload/ale/handlers/writegood.vim
@@ -31,19 +31,30 @@ function! ale#handlers#writegood#Handle(buffer, lines) abort
"
" "it is" is wordy or unneeded on line 20 at column 53
" "easily" can weaken meaning on line 154 at column 29
+ let l:marks_pattern = '\v^ *(\^+) *$'
let l:pattern = '\v^(".*"\s.*)\son\sline\s(\d+)\sat\scolumn\s(\d+)$'
let l:output = []
-
- for l:match in ale#util#GetMatches(a:lines, l:pattern)
- " Add the linter error. Note that we need to add 1 to the col because
- " write-good reports the column corresponding to the space before the
- " offending word or phrase.
- call add(l:output, {
- \ 'text': l:match[1],
- \ 'lnum': l:match[2] + 0,
- \ 'col': l:match[3] + 1,
- \ 'type': 'W',
- \})
+ let l:last_len = 0
+
+ for l:match in ale#util#GetMatches(a:lines, [l:marks_pattern, l:pattern])
+ if empty(l:match[2])
+ let l:last_len = len(l:match[1])
+ else
+ let l:col = l:match[3] + 1
+
+ " Add the linter error. Note that we need to add 1 to the col because
+ " write-good reports the column corresponding to the space before the
+ " offending word or phrase.
+ call add(l:output, {
+ \ 'text': l:match[1],
+ \ 'lnum': l:match[2] + 0,
+ \ 'col': l:col,
+ \ 'end_col': l:last_len ? (l:col + l:last_len - 1) : l:col,
+ \ 'type': 'W',
+ \})
+
+ let l:last_len = 0
+ endif
endfor
return l:output