Closed adolfocorreia closed 3 years ago
It seems that line 16 in autoload/quick_scope.vim should read
if g:qs_enable && (!exists('b:qs_local_disable') || !b:qs_local_disable) && index(get(g:, 'qs_buftype_blacklist', []), &buftype) < 0 && index(get(g:, 'qs_filetype_blacklist', []), &filetype) < 0
instead of
if g:qs_enable && (!exists('b:qs_local_disable') || !b:qs_local_disable) && index(get(g:, 'qs_buftype_blacklist', []), &buftype) && index(get(g:, 'qs_filetype_blacklist', []), &filetype) < 0
Note that there is a missing < 0 check after the buffer type blacklist lookup.
< 0
It seems that line 16 in autoload/quick_scope.vim should read
instead of
Note that there is a missing
< 0
check after the buffer type blacklist lookup.