-
-
Notifications
You must be signed in to change notification settings - Fork 11.3k
Vim segmentation fault on OS X 10.9 Mavericks #23938
Comments
Do the two Macs have different plugins installed? Any ruby plugins? Any non-standard rubies? |
Command-T needed a fresh |
👍 Solved my issue. |
also solved my issue! never thought a |
👍 Solved my issue as well. Thanks! |
I'm also getting this on Mavericks, but it's not Command-T. It seems any plugin that runs Ruby makes this Vim explode on Mavericks, for me. I can reproduce it by running e.g. this command in Vim: A-ha. This fixes it: |
thanks, @henrik . You're a life saver! Was very annoying when I tried to change a bit of my code and it would seg fault everytime. |
@HangingClowns Very happy to help! |
Thanks @henrik 👍 |
The above didn't solve it for me. I had to install ruby 1.8.7 (OSX Mountain Lion) and compile command-t with it. |
@aspyct That's exactly what the But maybe command-t is also compiled against a specific Ruby, so another solution for your situation might be to (re)compile command-t after doing I don't use command-t (I use the pure-Vim ctrlp instead), so this wasn't an issue for me. |
Somehow these three commands didn't work for me. Maybe I did something wrong... |
👍 |
@henrik thank you very much. Had this issue and was forced to use different editor. Now everything is working fine again :) |
I just ran into this same problem (OS X Mavericks), none of the above fixes worked for me. I was able to fix it by using the following: cd ~/.vim/ruby/command-t
rm Makefile
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb
make
sudo make install This compiles Command-T using Ruby 1.8, which comes packaged with Mavericks. Hope this helps somebody who finds this via Google (like I did). |
when installing vim with brew, I use |
Command-T was it, thanks! |
Hmm, strange. getting it again, now |
Command+T was the problem for me as well 👍 thanks!! |
https://gist.github.com/anonymous/7297719
Not completely sure what's going on here; I've got two Macs with identical
brew --config
output, but vim only segfaults on one of them.I did some Googling and tried
vim -u NONE -U NONE
, and it does start, so I know it's a plugin to blame… but I don't know where to go from here.The text was updated successfully, but these errors were encountered: