-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
s:savecpo errors when using with Pathogen #17
Comments
I'm puzzled about how this could ever happen - the I'm a bit puzzled - can you try running
and reproducing the error? That should dump out a trace that shows every line of vimscript as it's executed, which should help me to figure out how |
It seems that setting Pathogen's infection directory to be After moving the pathogen infection directory, my folding issue (and this |
Glad you found it - thanks for the update. |
specifying path plugin in Vundle ('call vundle#begin()') was causing error when load 'tabular' plugin. Probably because it was loading two times [#17](godlygeek/tabular#17). When vim is started, it seems load all content in '~/.vim/plugin'. Then with the line "Plugin 'godlygeek/tabular'" in .vimrc, it load again and unset variables. Without setting plugin path, plugins are installed in ~/.vim/bundle.
Vim 7.3.409
Latest pathogen and tabular straight from Github.
My config calls pathogen on the 'plugin' directory, where I have my vim plugin submodules.
cpoptions
is not set in my vimrc.I get the following error when I run vim:
:Tabularize
seems to work as normal, but this error is a bit aggravating. Any solution that I'm maybe overlooking?EDIT: Setting
cpoptions
did not change behavior.EDIT2: Commenting out lines 406 and 407 causes the error message to go away. Testing Tabular again under these circumstances did not seem to result in any side-effects.
The text was updated successfully, but these errors were encountered: