David Hegland

Results 93 comments of David Hegland

@fritzophrenic are you still seeing this issue? or were you able to get everything working correctly?

@duckie68 / @thurloat would one of you be willing to update the `doc/tagbar.txt` file for this? I'm not sure I really understand what is being captured here, but is this...

@bitbrahms are you still seeing this? Is it specific to a given file or known file type? can you share a source file that produces this error? I have not...

@fly-potato-100 There was a recent PR (#656) to add a `g:tagbar_file_size_limit` option to not process files for files beyond a defined limit. Will this work for your needs?

@fly-potato-100 does the `g:tagbar_file_size_limit` option work for your needs? Otherwise you might need to change the autocmd to use the `BufReadPre` event instead of `BufReadPost`. Currently tagbar triggers on the...

@RyanZZZZZ Can this be controlled via the `g:tagbar_show_balloon` configuration parameter? I currently don't see this in my configuration, so I am not able to test it. It might be how...

So did a little testing with this... as per @noscript's comment on [NERDTree#1170](https://github.com/preservim/nerdtree/issues/1170) where it was stated that the timer starts in the same thread, I added a delay in...

We may want to look at integration with the [async-run](https://github.com/skywind3000/asyncrun.vim) plugin by @skywind3000 to do this. It looks like that may be the best way to do a background process...

@noscript Ya we understand that the vim functions themselves will not be able to run in the background. We are looking at the external ctags call to run in the...

Looks like there might be a typo in your code. ```vim let type_ts.cstagsbin = tstags ``` should be: ```vim let type_ts.ctagsbin = tstags ```