Created
December 7, 2011 08:17
-
-
Save mikker/1441965 to your computer and use it in GitHub Desktop.
When Command-T makes MacVim crash on startup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ mvim . | |
| Vim: Caught deadly signal SEGV | |
| Vim: Finished. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The solution is to use system ruby both when building MacVim and Command-T | |
| $ brew uninstall macvim | |
| $ rvm use system | |
| $ brew install macvim | |
| # ... and in ~/.vim/ruby/command-t | |
| $ rvm use system | |
| $ ruby extconf.rb | |
| $ make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment