David Hegland
David Hegland
Can you share your vimrc configuration? I'm trying to reproduce and for me it updates almost instantaneously.  One possibility is if you have your `updatetime` in vim set too...
This may be a limitation of ctags. Can you confirm the output of running ctags on the file to see if it has the `"access"` flag? ``` ctags --extras=+F -f...
Ok this looks to be an issue with ctags itself then. Tagbar keys off the field `"access:public"` to help determine public/private status. Without that, it can't make the determination and...
That is actually a good question. When I try to repro I don't see the access modifier in front. I just see `writeClosersZerolog : []io.WriteCloser` in my tagbar window without...
Hmm. When I open this file, I don't see any access symbol in front of any of the variables.  Do you have a custom config for ctags / vim...
I took a look through the plugins and nothing jumps out that I can see that would impact how tagbar sees the tags. Sorry I can't be of more help...
That looks like it could work. If you want to push up a pull request, then if anybody else wants to help test it out as well we could get...
Can you share the relevant sections of your .vimrc file and also list your ctags version? If this only happens for Ruby files, you can also check the `ctags --list-kinds=ruby`...
I've added a couple more changes to this PR to address a couple other areas of concern. It should now handle vim-9 with the newer handling, but pre-vim-9 will still...
This is controlled via the `g:tagbar_show_data_type` option. Please see the documentation for more information. https://github.com/preservim/tagbar/blob/12edcb59449b335555652898f82dd6d5c59d519a/doc/tagbar.txt#L772