tagbar icon indicating copy to clipboard operation
tagbar copied to clipboard

Vim plugin that displays tags in a window, ordered by scope

Results 125 tagbar issues
Sort by recently updated
recently updated
newest added

Creating a PR to track any vim-9.0 issues / development items.

Hi, I have noticed the duplicated Issues: #107 #494 and #527 . But I don't think the problem has been solved. 1. `tagbar` works fine in `neovim` and `vim` with...

Currently, to use the `TagbarJumpNext` and `TagbarJumpPrev` commands, you need to open the tagbar panel first. It would be great to allow jumping to the next/previous tag without opening the...

feature
bug
pr-welcome

I have the following lines in my `vimrc`. ```vim autocmd BufWritePost * if !(empty(expand('%')) || &buftype =~ 'nofile') | mkview | endif autocmd BufReadPost * if !(empty(expand('%')) || &buftype =~...

Hello, thanks for the awesome plugin! It works perfectly for all my another needs with Python, C++ and others, but I'm detecting in vim 9 that HTML tags are not...

I would like to add support for openapi in my configuration. I've found this snippet ```viml let g:tagbar_type_yaml = { \ 'ctagstype': 'openapi', \ 'kinds': [ \ 'p:path', \ 'd:schema',...

Hello, I have followed the instructions specified in tagbar.txt available at https://github.com/preservim/tagbar/blob/master/doc/tagbar.txt to set up the ~/.ctags file and made changes to the vimrc as recommended there. However, this document...

Fixes #789 This PR adds a second duplicate `--option` directive to the `ctags` command, using `deffile` twice. The first `--option` comes prior to `--language-force` and lets ctags know the custom...

The idea is taken from README.md of MattLombana/dotfiles Fixes https://github.com/preservim/tagbar/issues/851

Seek for help: I want to use tagbar with markdown, but do not display the scope info of each title like following: ![image](https://github.com/preservim/tagbar/assets/73930449/d7518159-1896-4583-bca2-f9c1766ff63d) How to do to disable that display?

feature
pr-welcome