1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-17 19:40:27 +01:00

Merge pull request #123 from jszakmeister/fix-currenttag-on-unsupported-file

When switching to a buffer that is unsupported, clear current.
This commit is contained in:
Jan Larres
2013-02-18 00:51:36 -08:00

View File

@@ -3068,6 +3068,7 @@ function! s:AutoUpdate(fname, force) abort
" Don't do anything if the file isn't supported
if !s:IsValidFile(a:fname, sftype)
call s:LogDebugMessage('Not a valid file, stopping processing')
call s:known_files.setCurrent({})
return
endif