Reputation: 361
I have already mounted ctags, but it still not working at all. I pressed ,tt , and nothing happened. Is that any way to solve this problem in spf13-vim? Did Anyone suffer the same problem as me?
Upvotes: -1
Views: 977
Reputation: 61
I found that tagbar plugin is not installed if ctags
command is not available on spf13 installation.
Search tagbar in installed plugins list: :BundleList
then /tagbar
.
If it's not found, install ctags first.
Running :BundleInstall
within vim and restarting vim will fix the problem.
Upvotes: 0
Reputation: 1796
Have you remapped your <Leader>
key to ,
?
The tagbar toggle in spf13 is <Leader>tt
, and the leader key is \
by default.
Try to toggle the tagbar with \tt
. Alternatively, add let mapleader=","
to your .vimrc.
Upvotes: 0