summaryrefslogtreecommitdiff
path: root/ale_linters/python/flake8.vim
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2016-09-14 11:47:52 +0100
committerw0rp <devw0rp@gmail.com>2016-09-14 11:47:52 +0100
commit7fa437985fda31328dc23973a38fc9007b528c2b (patch)
tree1f5b286904f8508377a4886d506e3290a3ad54f9 /ale_linters/python/flake8.vim
parent746ffe8acd72f3228aa6c5726d1c8dd6ee2b0513 (diff)
downloadale-7fa437985fda31328dc23973a38fc9007b528c2b.zip
Fix issues with switching buffers rapidly causing errors by remembering the buffer and passing the buffer value to various functions.
Diffstat (limited to 'ale_linters/python/flake8.vim')
-rw-r--r--ale_linters/python/flake8.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/python/flake8.vim b/ale_linters/python/flake8.vim
index 4850f8ef..8f33f9ef 100644
--- a/ale_linters/python/flake8.vim
+++ b/ale_linters/python/flake8.vim
@@ -4,7 +4,7 @@ endif
let g:loaded_ale_linters_python_flake8 = 1
-function! ale_linters#python#flake8#Handle(lines)
+function! ale_linters#python#flake8#Handle(buffer, lines)
" Matches patterns line the following:
"
" stdin:6:6: E111 indentation is not a multiple of four
@@ -26,7 +26,7 @@ function! ale_linters#python#flake8#Handle(lines)
" vcol is Needed to indicate that the column is a character.
call add(output, {
- \ 'bufnr': bufnr('%'),
+ \ 'bufnr': a:buffer,
\ 'lnum': line,
\ 'vcol': 0,
\ 'col': column,