22
33Author: Yegappan Lakshmanan (yegappan AT yahoo DOT com)
44For Vim version 6.0 and above
5- Last change: 2007 May 24
5+ Last change: 2013 Feburary 26
66
771. Overview | taglist-intro |
882. Taglist on the internet | taglist-internet |
@@ -759,6 +759,12 @@ loaded. Examples:
759759>
760760 let Tlist_Ctags_Cmd = 'd:\tools\ctags.exe'
761761 let Tlist_Ctags_Cmd = '/usr/local/bin/ctags'
762+ <
763+ On Microsoft Windows, if ctags.exe is installed in a directory with space
764+ characters in the name (e.g. C:\Program Files\ctags\ctags.exe), then you need
765+ to set the Tlist_Ctags_Cmd variable like this:
766+ >
767+ let Tlist_Ctags_Cmd = '"C:\Program Files\ctags\ctags.exe"'
762768<
763769 *'Tlist_Display_Prototype'*
764770Tlist_Display_Prototype~
@@ -841,6 +847,7 @@ If your terminal doesn't support changing the window width from Vim (older
841847version of xterm running in a Unix system) or if you see any weird problems in
842848the screen due to the change in the window width or if you prefer not to
843849adjust the window width then set the 'Tlist_Inc_Winwidth' variable to zero.
850+ If you are using GNU Screen, you may want to set this variable to zero.
844851CAUTION: If you are using the MS-Windows version of Vim in a MS-DOS command
845852window then you must set this variable to zero, otherwise the system may hang
846853due to a Vim limitation (explained in :help win32-problems)
@@ -1144,6 +1151,7 @@ The taglist plugin provides several global functions that can be used from
11441151other Vim plugins to interact with the taglist plugin. These functions are
11451152described below.
11461153
1154+ | Tlist_Get_Filenames() | Return filenames in the taglist
11471155| Tlist_Update_File_Tags() | Update the tags for the specified file
11481156| Tlist_Get_Tag_Prototype_By_Line() | Return the prototype of the tag at or
11491157 before the specified line number in the
@@ -1154,6 +1162,12 @@ described below.
11541162| Tlist_Set_App() | Set the name of the application
11551163 controlling the taglist window.
11561164
1165+ *Tlist_Get_Filenames()*
1166+ Tlist_Get_Filenames()
1167+ Returns a list of filenames in the taglist. Each filename is
1168+ separated by a newline (\n) character. If the taglist is empty
1169+ an empty string is returned.
1170+
11571171 *Tlist_Update_File_Tags()*
11581172Tlist_Update_File_Tags({filename} , {filetype} )
11591173 Update the tags for the file {filename} . The second argument
0 commit comments