Replace taglist with tagbar
This commit is contained in:
parent
68442f5a30
commit
796e4444ef
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
1
vim/bundle/majutsushi-tagbar
Submodule
1
vim/bundle/majutsushi-tagbar
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 52fe2b7c3a6c74f1fc8cb311e0bcc6fe8c09fddb
|
@ -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
|
||||
|
||||
|
3
vim/plugin/settings/tagbar.vim
Normal file
3
vim/plugin/settings/tagbar.vim
Normal file
@ -0,0 +1,3 @@
|
||||
"open the taglist (method browser) using ,t
|
||||
nnoremap <silent> ,T :TagbarToggle<CR>
|
||||
|
Loading…
Reference in New Issue
Block a user