Script:273
Talk0this wiki
Use this page to discuss script 273 taglist: source code browser (supports C/C++, Java, Perl, Python and more)
- Add constructive comments, bug reports, or discuss improvements (see the guideline).
- Do not document the script here (the author should do that on vim.org).
- This page may be out of date: check the script's vim.org page above, and its release notes.
Using clang?
Edit
Couldn't this plugin use clang for parsing C++? At the moment tag list has problems with my C++ code
--Michael.lehn 17 November 2011
Comments
Edit
I use this plugin to put the name of the current function (where cursor is located) in the statusline using:
set statusline+=%(%{Tlist_Get_Tagname_By_Line()}%), " Function name
This generally works very well with C code. However, I see one example where it displays the wrong information:
$ cd vim/src $ vim ex_getln.c '+/^showmatches/+20' :echo Tlist_Get_Tagname_By_Line() Actual result: L_SHOWFILE Expected result: showmatches
--Dominiko 05:42, 14 August 2010 (UTC)
Note that this plugin adds a lot to the startup time because it does a lot of initialization when it is loaded, even if taglist is never called in the Vim session. It could easily fix this by only initializing the first time a user make use of taglist.