Reset window after jump to tag if zoomed (#625)

This commit is contained in:
tanhuacheng 2020-06-25 05:01:58 +08:00 committed by GitHub
parent 56399f446c
commit d7063c7484
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2260,6 +2260,9 @@ function! s:JumpToTag(stay_in_tagbar) abort
if s:pwin_by_tagbar
pclose
endif
if s:is_maximized
call s:ZoomWindow()
endif
call s:HighlightTag(0)
endif
endfunction