We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe.
The tagbar.vim plugin supports parsing ctags and provides a tree view functionality.
In vista.vim, we can also obtain a tree view using LSP (such as :Vista coc).
:Vista coc
Indeed, :Vista ctags provides a flat view rather than a tree view.
:Vista ctags
So is it possible to support tree view for :Vista ctags?
Describe the solution you'd like
Perhaps we can utilize the fields in the ctags file format to obtain the tree view.
a foo.cpp /^ int a = 1;$/;" v namespace:foo::bar::baz1::baz2 typeref:typename:int bar foo.cpp /^namespace foo::bar {$/;" n namespace:foo file: bar foo.cpp /^namespace foo::bar::baz3 { }$/;" n namespace:foo file: baz1 foo.cpp /^ namespace baz1::baz2 {$/;" n namespace:foo::bar file: baz2 foo.cpp /^ namespace baz1::baz2 {$/;" n namespace:foo::bar::baz1 file: baz3 foo.cpp /^namespace foo::bar::baz3 { }$/;" n namespace:foo::bar file: foo foo.cpp /^namespace foo::bar {$/;" n file: foo foo.cpp /^namespace foo::bar::baz3 { }$/;" n file: zz foo.cpp /^ void zz() {}$/;" f namespace:foo::bar::baz1::baz2 typeref:typename:void
The text was updated successfully, but these errors were encountered:
The tree view is already supported by :Vista ctags, there is some space for improvement though (#320).
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
The tagbar.vim plugin supports parsing ctags and provides a tree view functionality.
In vista.vim, we can also obtain a tree view using LSP (such as
:Vista coc
).Indeed,
![image](https://private-user-images.githubusercontent.com/40995042/248529046-e6e5f0c9-de15-47e8-8438-bfdf88159b9e.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyOTI4OTQsIm5iZiI6MTczOTI5MjU5NCwicGF0aCI6Ii80MDk5NTA0Mi8yNDg1MjkwNDYtZTZlNWYwYzktZGUxNS00N2U4LTg0MzgtYmZkZjg4MTU5YjllLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjExVDE2NDk1NFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTNhMzE5YjQ0MWM0MWVkOTljOWJmNGI4NTY0OTk3ZDhiOTMyNDk5ZjExNGVhZDUxNGVmM2ZhZDI3Y2MyYTk1NDImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.wOZzJdS6f9Ofr77e9fD40N4F5ZZzEtxUvOOcjPKTaHk)
:Vista ctags
provides a flat view rather than a tree view.So is it possible to support tree view for
:Vista ctags
?Describe the solution you'd like
Perhaps we can utilize the fields in the ctags file format to obtain the tree view.
The text was updated successfully, but these errors were encountered: