1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-17 11:30:28 +01:00

Add option to print the tag linenumber in the tagbar window (#684)

* Add option to print the tag linenumber in the tagbar window

* Update documentation markup

* Change variable name to g:tagbar_show_tag_linenumbers to be more consistent with other variables

* Fix documentation
This commit is contained in:
raven42
2020-10-27 08:37:33 -05:00
committed by GitHub
parent bc48b8b84b
commit 0d1c6442d9
5 changed files with 44 additions and 6 deletions

View File

@@ -96,13 +96,14 @@ function! s:setup_options() abort
\ ['hide_nonpublic', 0],
\ ['height', 10],
\ ['indent', 2],
\ ['scopestrs', {}],
\ ['left', 0],
\ ['position', default_pos],
\ ['previewwin_pos', previewwin_pos],
\ ['scopestrs', {}],
\ ['show_balloon', 1],
\ ['show_visibility', 1],
\ ['show_linenumbers', 0],
\ ['show_tag_linenumbers', 0],
\ ['singleclick', 0],
\ ['sort', 1],
\ ['systemenc', &encoding],