Comments
-
Greg Hurrell
Check out ticket #1524 for a fairly detailed discussion of this point.
The short version seems to be that:
- VIM doesn't officially support Ruby 1.9.1 yet, although their is a patch for it in the Subversion repo
- As support hasn't made it into a released version yet, "your mileage may vary" depending on which operating system you use
-
Even if you think you compiled VIM with 1.9.1 you probably
didn't:
-
Run
otool -L
on theMacVim.app/Contents/MacOS/Vim
andMacVim.app/Contents/MacOS/Vims
executables to see if they linked against the system Ruby.framework (which is 1.8.7) (it probably did link against it) -
Run
:ruby p RUBY_VERSION
from inside MacVim to see what version it is actually running (probably will print 1.8.7)
-
Run
-
In order to build MacVim with real 1.9.1 support you have
to hack the
src/auto/config.mk
file, and it's not straightforward to do so
So I am assuming that your MacVim is actually linked against 1.8.7, so you'll have to build the Command-T plug-in under 1.8.7, even if you normally use Ruby 1.9.1 from the command line.
-
Greg Hurrell
I gather from the lack of response that you've satisfactorily solved your problem by compiling under 1.8.7, so I'm going to mark this one as closed. Feel free to post another comment if you want me to re-open it.
-
Greg Hurrell
Status changed:
- From: new
- To: closed
Add a comment
Comments are now closed for this issue.