Skip to content

Instantly share code, notes, and snippets.

@mikker
Created December 7, 2011 08:17
Show Gist options
  • Select an option

  • Save mikker/1441965 to your computer and use it in GitHub Desktop.

Select an option

Save mikker/1441965 to your computer and use it in GitHub Desktop.
When Command-T makes MacVim crash on startup
$ mvim .
Vim: Caught deadly signal SEGV
Vim: Finished.
# 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