Skip to content
This repository has been archived by the owner on Jan 11, 2019. It is now read-only.

Troubleshooting

eMxyzptlk edited this page Feb 2, 2012 · 2 revisions

Troubleshooting

MacVim does not start (Segfault)

This problem is known to happen for several reasons, first you need to make sure MacVim (or gvim) with the system ruby and system python, please follow the Pre-requisites page carefully.

If Vim still refuses to start, you need to start checking into problematic plugins, you can achieve this by simply disabling all plugins, like this:

cd ~/.vim; for submodule in `git submodule | grep -v core | awk '{print $2}'`; do
  echo "call janus#disable_plugin('`basename ${submodule}`')" >> ~/.vimrc.before;
done

and then enabling plugin by plugin until you narrow down the problematic ones, Hint: You most likely find the syntastic plugin to be the source of problems.

Clone this wiki locally