문제

I have recently upgraded to OSX Mavericks and since then my console has become very slow and unresponsive.

I am using the oh-my-zsh ZSH shell

도움이 되었습니까?

해결책

Sammynammari posted a fix for a similar problem here on github. It is caused by the vi-mode plugin so you must disable it until it has been fixed.

Open up your .zshrc file and remove the vi-mode plugin from the plugins list.

Before:

plugins=(vi-mode)

After:

plugins=()

Once you restart the console it should be fine again. If it doesn't work then try disabling all the plugins, then if that works gradually re-enable them one by one to find the culprit.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top