1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-18 12:00:23 +01:00

Allow ignoring specific files, closes #169

This commit is contained in:
Jan Larres
2013-11-08 17:27:34 +13:00
parent 1a2c4ec958
commit 207b8520c2
2 changed files with 15 additions and 0 deletions

View File

@@ -3590,6 +3590,11 @@ function! s:IsValidFile(fname, ftype) abort
return 0
endif
if getbufvar(a:fname, 'tagbar_ignore') == 1
call s:LogDebugMessage('File is marked as ignored')
return 0
endif
if &previewwindow
call s:LogDebugMessage('In preview window')
return 0