1
0
mirror of https://github.com/gryf/tagbar.git synced 2026-02-12 20:05:52 +01:00

Add g:tagbar_scrolloff configuration (#692)

* Add g:tagbar_scroll_offset configuration
Closes #564

Add option for `g:tagbar_scrolloff` to issue a `setlocal scrolloff=#` during tagbar window init

* Address review comments
This commit is contained in:
raven42
2020-10-29 10:36:47 -05:00
committed by GitHub
parent 7a54a7d4ae
commit 00841836b4
3 changed files with 20 additions and 0 deletions

View File

@@ -947,6 +947,10 @@ function! s:InitWindow(autoclose) abort
setlocal nomodifiable
setlocal textwidth=0
if g:tagbar_scrolloff > 0
execute 'setlocal scrolloff=' . g:tagbar_scrolloff
endif
if g:tagbar_show_balloon == 1 && has('balloon_eval')
setlocal balloonexpr=TagbarBalloonExpr()
set ballooneval