I tried this in .vimrc
(which uses vundle
):
autocmd FileType python Bundle 'ervandew/supertab'
and 'ervandew/supertab'
also lists in 'BundleList` in a python file. It doesn't work. I don't know why. Maybe my autocmd command was wrong?
I suspect the assignments are going away. When I do just Bundle 'ervandew/supertab'
, I can see variables in vim. For example :let SuperTabMappingForward
shows SuperTabMappingForward <tab>
. But with autocmd, I get E121: Undefined variable: SuperTabMappingForward
. I get the same when I put Bundle 'ervandew/supertab'
in ~/.vim/ftplugin/python.vim
My vim knowledge in limited!