Reputation: 7099
I created tags file using ctags.
Now when I`m trying to use TAB for text completion from buffers I also see all tags in my popup.
How to prevent that and not show tags in completion popup?
I`m using SuperTab, without any options specified.
Upvotes: 2
Views: 1129
Reputation: 161664
You can try this setting:
:set cpt-=t
The default value of complete
option is .,w,b,u,t,i
, which means to scan:
Upvotes: 8