summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/list.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/ale/list.vim b/autoload/ale/list.vim
index 480880e4..a086b10c 100644
--- a/autoload/ale/list.vim
+++ b/autoload/ale/list.vim
@@ -4,11 +4,11 @@
" Return 1 if there is a buffer with buftype == 'quickfix' in bufffer list
function! ale#list#IsQuickfixOpen() abort
for l:buf in range(1, bufnr('$'))
- if getbufvar(l:buf, '&buftype') ==# 'quickfix'
+ if getbufvar(l:buf, '&buftype') ==# 'quickfix'
return 1
endif
endfor
- return 0
+ return 0
endfunction
function! ale#list#SetLists(loclist) abort