Replace taglist with tagbar

This commit is contained in:
yan 2012-01-24 10:38:33 -08:00
parent 68442f5a30
commit 796e4444ef
5 changed files with 8 additions and 4 deletions

3
.gitmodules vendored
View File

@ -208,3 +208,6 @@
[submodule "vim/bundle/kien-ctrlp"]
path = vim/bundle/kien-ctrlp
url = https://github.com/kien/ctrlp.vim
[submodule "vim/bundle/majutsushi-tagbar"]
path = vim/bundle/majutsushi-tagbar
url = https://github.com/majutsushi/tagbar.git

View File

@ -276,7 +276,7 @@ Included vim plugins
* ShowMarks - creates a visual gutter to the left of the number column showing you your marks
* EasyMotion - hit ,,w (forward) or ,,b (back) and watch the magic happen. just type the letters and jump directly to your target - in the provided vimrc the keys are optimized for home and upper row, no pinkies
* LustyJuggler/Explorer - hit B, type buf name to match a buffer, or type S and use the home row keys to select a buffer
* TagList - hit ,T to see a list of methods in a class (uses ctags)
* TagBar - hit ,T to see a list of methods in a class (uses ctags)
* CtrlP - Ctrl-p or ,t to find a file
* VimBookmarks - toggle an anonymous bookmark ,bb and go thru them ,bn ,bp and clear them ,bc
* TabMan - hit ,mt to see all tabs and buffers in a tree. Easy to navigate and close.

@ -0,0 +1 @@
Subproject commit 52fe2b7c3a6c74f1fc8cb311e0bcc6fe8c09fddb

View File

@ -134,9 +134,6 @@ nnoremap <silent> vv <C-w>v
nnoremap <silent> ss <C-w>s
"open the taglist (method browser) using ,t
nnoremap <silent> ,T :TlistToggle<CR>
" create <%= foo %> erb tags using Ctrl-k in edit mode
imap <silent> <C-K> <%= %><Esc>3hi

View File

@ -0,0 +1,3 @@
"open the taglist (method browser) using ,t
nnoremap <silent> ,T :TagbarToggle<CR>