mirror of
https://github.com/preservim/tagbar.git
synced 2025-02-17 16:43:15 +08:00
Vim plugin that displays tags in a window, ordered by scope
![]() If there are other plugin windows open, close tagbar window and handle over the control to the other window. If the last file in the Vim's file arguments list has not been edited yet, normal Vim's behavior would be quit on ':q!' or twice ':q'. As our plugin window is the last window now, previously quiting on the file window will not trigger the "more files" check, but our window does. We'd better to behave the same. Currently, twice ':q' quiting would work, but ':q!' not. There is no easy way to determine whether the command being executed with a "!" or not, so this is a flaw now and we need to come up a better solution someday, but it is a progress than before. |
||
---|---|---|
autoload | ||
doc | ||
plugin | ||
syntax | ||
.gitattributes | ||
.gitignore | ||
.info | ||
README |
Tagbar is a vim plugin for browsing the tags of source code files. It provides a sidebar that displays the ctags-generated tags of the current file, ordered by their scope. This means that for example methods in C++ are displayed under the class they are defined in. Check out the homepage at http://majutsushi.github.com/tagbar/ for more information.