flake8 reports visual columns

Fixes #2092.
This commit is contained in:
Marius Gedminas 2018-11-22 11:57:02 +02:00
parent ff0bd14efe
commit 9481f307fb
1 changed files with 1 additions and 0 deletions

View File

@ -110,6 +110,7 @@ function! ale_linters#python#flake8#Handle(buffer, lines) abort
let l:item = {
\ 'lnum': l:match[1] + 0,
\ 'col': l:match[2] + 0,
\ 'vcol': 1,
\ 'text': l:match[4],
\ 'code': l:code,
\ 'type': 'W',