spf13-vim tagbar is not working

951 Views Asked by At

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?

2

There are 2 best solutions below

1
On

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.

0
On

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.