petermeng / ex-taglist

Source code browser (supports C/C++, java, perl, python, tcl, sql, php, etc)

Home Page:http://www.vim.org/scripts/script.php?script_id=273

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Intro

This is a mirror of http://www.vim.org/scripts/script.php?script_id=273

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.

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

For more information about using this plugin, after installing the taglist plugin, use the :help taglist command.

Requirements

Installation

ex-taglist is written based on exvim/ex-utility. This is the basic library of ex-vim-plugins. Follow the readme file in ex-utility to install it first.

ex-taglist follows the standard runtime path structure, and as such it can be installed with a variety of plugin managers:

To install using Vundle:

# add this line to your .vimrc file
Bundle 'exvim/ex-taglist'

To install using Pathogen:

cd ~/.vim/bundle
git clone https://github.com/exvim/ex-taglist

To install using NeoBundle:

# add this line to your .vimrc file
NeoBundle 'exvim/ex-taglist'

Download zip file:

cd ~/.vim
unzip ex-taglist-master.zip
copy all of the files into your ~/.vim directory

What I changed

Add target line highlight

I add highlight for the target line to help user preview of the context clearly.

Use ex-utility's method for manipulate windows

Use ex#windows#... funcitons in ex-utility for manipulating Vim windows.

About

Source code browser (supports C/C++, java, perl, python, tcl, sql, php, etc)

http://www.vim.org/scripts/script.php?script_id=273


Languages

Language:Vim Script 100.0%