diff options
author | w0rp <w0rp@users.noreply.github.com> | 2018-11-28 09:49:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-28 09:49:31 +0000 |
commit | 0a384a49d371838903d8401c5358ec60f3f4266d (patch) | |
tree | 2409e4e302f4f2696f95e28a11f805f48beb12f7 /ale_linters/python/flake8.vim | |
parent | 7e28a61fac79f7360b53fce0d3c108e700346a21 (diff) | |
parent | a0baeec5911e34107998ad9fa54bb847704234fc (diff) | |
download | ale-0a384a49d371838903d8401c5358ec60f3f4266d.zip |
Merge pull request #2096 from mgedmin/flake8-uses-vcols
flake8 reports visual columns
Diffstat (limited to 'ale_linters/python/flake8.vim')
-rw-r--r-- | ale_linters/python/flake8.vim | 1 |
1 files changed, 1 insertions, 0 deletions
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', |