2
2
3
3
Author: Yegappan Lakshmanan (yegappan AT yahoo DOT com)
4
4
For Vim version 6.0 and above
5
- Last change: 2007 May 24
5
+ Last change: 2013 Feburary 26
6
6
7
7
1. Overview | taglist-intro |
8
8
2. Taglist on the internet | taglist-internet |
@@ -759,6 +759,12 @@ loaded. Examples:
759
759
>
760
760
let Tlist_Ctags_Cmd = 'd:\tools\ctags.exe'
761
761
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"'
762
768
<
763
769
*'Tlist_Display_Prototype'*
764
770
Tlist_Display_Prototype~
@@ -841,6 +847,7 @@ If your terminal doesn't support changing the window width from Vim (older
841
847
version of xterm running in a Unix system) or if you see any weird problems in
842
848
the screen due to the change in the window width or if you prefer not to
843
849
adjust 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.
844
851
CAUTION: If you are using the MS-Windows version of Vim in a MS-DOS command
845
852
window then you must set this variable to zero, otherwise the system may hang
846
853
due 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
1144
1151
other Vim plugins to interact with the taglist plugin. These functions are
1145
1152
described below.
1146
1153
1154
+ | Tlist_Get_Filenames() | Return filenames in the taglist
1147
1155
| Tlist_Update_File_Tags() | Update the tags for the specified file
1148
1156
| Tlist_Get_Tag_Prototype_By_Line() | Return the prototype of the tag at or
1149
1157
before the specified line number in the
@@ -1154,6 +1162,12 @@ described below.
1154
1162
| Tlist_Set_App() | Set the name of the application
1155
1163
controlling the taglist window.
1156
1164
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
+
1157
1171
*Tlist_Update_File_Tags()*
1158
1172
Tlist_Update_File_Tags({filename} , {filetype} )
1159
1173
Update the tags for the file {filename} . The second argument
0 commit comments