Improve file blacklisting to make Unite.vim not fuck up.

This commit is contained in:
w0rp
2016-10-31 14:47:08 +00:00
parent cb410927d1
commit 614a30a508
4 changed files with 31 additions and 14 deletions

View File

@@ -73,6 +73,11 @@ let s:cursor_timer = -1
let s:last_pos = [0, 0, 0]
function! ale#cursor#EchoCursorWarningWithDelay() abort
" Do nothing for blacklisted files.
if index(g:ale_filetype_blacklist, &filetype) >= 0
return
endif
if s:cursor_timer != -1
call timer_stop(s:cursor_timer)
let s:cursor_timer = -1