From 9481f307fb27a383e577c4107e3b97c1ea6dd5a0 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Thu, 22 Nov 2018 11:57:02 +0200 Subject: flake8 reports visual columns Fixes #2092. --- ale_linters/python/flake8.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'ale_linters/python') diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim index 9dcdacc6..14b67d77 100644 --- a/ale_linters/python/flake8.vim +++ b/ale_linters/python/flake8.vim @@ -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', -- cgit v1.2.3