Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add taglist version 4.6 #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion doc/taglist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Author: Yegappan Lakshmanan (yegappan AT yahoo DOT com)
For Vim version 6.0 and above
Last change: 2007 May 24
Last change: 2013 Feburary 26

1. Overview |taglist-intro|
2. Taglist on the internet |taglist-internet|
Expand Down Expand Up @@ -759,6 +759,12 @@ loaded. Examples:
>
let Tlist_Ctags_Cmd = 'd:\tools\ctags.exe'
let Tlist_Ctags_Cmd = '/usr/local/bin/ctags'
<
On Microsoft Windows, if ctags.exe is installed in a directory with space
characters in the name (e.g. C:\Program Files\ctags\ctags.exe), then you need
to set the Tlist_Ctags_Cmd variable like this:
>
let Tlist_Ctags_Cmd = '"C:\Program Files\ctags\ctags.exe"'
<
*'Tlist_Display_Prototype'*
Tlist_Display_Prototype~
Expand Down Expand Up @@ -841,6 +847,7 @@ If your terminal doesn't support changing the window width from Vim (older
version of xterm running in a Unix system) or if you see any weird problems in
the screen due to the change in the window width or if you prefer not to
adjust the window width then set the 'Tlist_Inc_Winwidth' variable to zero.
If you are using GNU Screen, you may want to set this variable to zero.
CAUTION: If you are using the MS-Windows version of Vim in a MS-DOS command
window then you must set this variable to zero, otherwise the system may hang
due to a Vim limitation (explained in :help win32-problems)
Expand Down Expand Up @@ -1144,6 +1151,7 @@ The taglist plugin provides several global functions that can be used from
other Vim plugins to interact with the taglist plugin. These functions are
described below.

|Tlist_Get_Filenames()| Return filenames in the taglist
|Tlist_Update_File_Tags()| Update the tags for the specified file
|Tlist_Get_Tag_Prototype_By_Line()| Return the prototype of the tag at or
before the specified line number in the
Expand All @@ -1154,6 +1162,12 @@ described below.
|Tlist_Set_App()| Set the name of the application
controlling the taglist window.

*Tlist_Get_Filenames()*
Tlist_Get_Filenames()
Returns a list of filenames in the taglist. Each filename is
separated by a newline (\n) character. If the taglist is empty
an empty string is returned.

*Tlist_Update_File_Tags()*
Tlist_Update_File_Tags({filename}, {filetype})
Update the tags for the file {filename}. The second argument
Expand Down
Loading