taglist.vim : Source code browser (supports C/C++, java, perl, python, tcl, sql, php, etc)
script karma |
Rating 3018/932,
Downloaded by 24918 |
created by |
Yegappan Lakshmanan |
|
script type |
utility |
|
description |
The "Tag List" plugin is a source code browser plugin for Vim and
provides an overview of the structure of source code files and allows
you to efficiently browse through source code files for different
programming languages. You can visit the taglist plugin home page for
more information:
http://www.geocities.com/yegappan/taglist
You can subscribe to the taglist mailing list to post your questions
or suggestions for improvement or to report bugs. Visit the following
page for subscribing to the mailing list:
http://groups.yahoo.com/group/taglist/
For more information about using this plugin, after installing the
taglist plugin, use the ":help taglist" command. |
|
install details |
1. Download the taglist.zip file and unzip the files to the $HOME/.vim or the
$HOME/vimfiles or the $VIM/vimfiles directory. After this step, you should
have the following two files (the directory structure should be preserved):
plugin/taglist.vim - main taglist plugin file
doc/taglist.txt - documentation (help) file
Refer to the |add-plugin|, |add-global-plugin| and |runtimepath| Vim
help pages for more details about installing Vim plugins.
2. Change to the $HOME/.vim/doc or $HOME/vimfiles/doc or $VIM/doc/vimfiles
directory, start Vim and run the ":helptags ." command to process the
taglist help file. Without this step, you cannot jump to the taglist help
topics.
3. If the exuberant ctags utility is not present in your PATH, then set the
Tlist_Ctags_Cmd variable to point to the location of the exuberant ctags
utility (not to the directory) in the .vimrc file.
4. If you are running a terminal/console version of Vim and the terminal
doesn't support changing the window width then set the
'Tlist_Inc_Winwidth' variable to 0 in the .vimrc file.
5. Restart Vim.
6. You can now use the ":Tlist" command to open/close the taglist
window. You can use the ":help taglist" command to get more information
about using the taglist plugin.
|
|
script versions (upload new version)
Click on the package to download.
taglist_40b1.zip |
4.0b1 |
2005-04-05 |
6.0 |
Yegappan Lakshmanan |
Added support for optionally displaying the tags in the drop-down/popup menu. Performance enhancments, various bug fixes and debug support. |
taglist.zip |
3.4 |
2004-08-16 |
6.0 |
Yegappan Lakshmanan |
1. Introduced a new option 'Tlist_Show_One_File" to display the tags for only the current buffer in the taglist window.
2. Support for not displaying the tags for a user-deleted file in the taglist window.
3. Fix for sharing the mouse single click map with other plugins |
taglist.zip |
3.3 |
2004-06-01 |
6.0 |
Yegappan Lakshmanan |
1. If Tlist_Ctags_Cmd variable is not set, on startup, check for the
presence of exuberant-ctags or ctags or tags in the PATH and set
Tlist_Ctags_Cmd variable accordingly. If none of the executable is
found, then the taglist plugin will not be not loaded.
2. Added a new configuration variable Tlist_Enable_Fold_Column to
enable or disable fold columns in the taglist window.
3. Added support for setting the taglist application name used by the
winmanager plugin and the cream package.
4. Two new key mappings ([[ and ]]) are added to the taglist window to
move between files.
5. When a file is modified, the taglist window will be automatically
updated (after going to some other window or buffer and then coming
to the modified buffer).
6. Made the Tlist_Update_File_Tags() function as a global function.
This function can be used to add or update the tags for a new file.
7. Updated the Tlist_Get_Tag_Prototype_By_Line() and the
Tlist_Get_Tagname_By_Line() functions to get the tag name and tag
prototype for the specified line in a file.
|
taglist.zip |
3.2 |
2004-04-25 |
6.0 |
Yegappan Lakshmanan |
Added support for closing the tags tree for inactive files, removing the tags tree for deleted buffers, processing the tags when the taglist window is not opened, disabling the automatic highlighting of the current tag, displaying name of the current tag. |
taglist.zip |
3.1 |
2003-11-02 |
6.0 |
Yegappan Lakshmanan |
Added support for saving and restoring taglist sessions. Separated the taglist documentation into a separate file in Vim help format. |
taglist.vim |
3.0 |
2003-09-24 |
6.0 |
Yegappan Lakshmanan |
Added support for displaying tags defined in multiple files. |
taglist.vim |
2.8 |
2003-09-14 |
6.0 |
Yegappan Lakshmanan |
Added information about the taglist mailing list. |
taglist.vim |
2.7 |
2003-08-21 |
6.0 |
Yegappan Lakshmanan |
1. Added TlistUpdate command to update the taglist window.
2. Made the taglist highlight groups user configurable.
3. Fixed a problem in the taglist integration with the winmanager plugin |
taglist.vim |
2.6 |
2003-06-09 |
6.0 |
Yegappan Lakshmanan |
1. Added support for previewing a tag.
2. Added the TlistClose command to close the taglist window
3. Added the Tlist_Exit_OnlyWindow option to close the taglist window if only that window is open. |
taglist.vim |
2.5 |
2003-04-25 |
6.0 |
Yegappan Lakshmanan |
Added support for highlighting the tag scope. Added support for displaying namespaces in C++ files. Updated the comments. |
|