Reputation: 5961
Recently I've installed MacVim and I'm having an issue with run it using iTerm. When I try to run it using the mvim
from the iTerm it appeared command not found: mvim
. I've tried the solution that provided on this thread but it didn't help. Can anyone please help about this?
Upvotes: 2
Views: 6682
Reputation: 21
I solved it by this, you may try it:
brew unlink vim
brew link macvim
Upvotes: 2
Reputation: 1034
I've got this way:
brew install macvim --override-system-vim --custom-icons --with-cscope --with-lua --enable-pythoninterp --enable-python3interp --ovrride-system-vi --with-python --with-python3
Upvotes: 1
Reputation:
Echo the value of your $PATH
variable while at your prompt; the mvim
file has to be in one of the directories listed there in order to be found when you try to run it.
Either move the mvim
script there, or add the directory it is currently located in to your PATH via your .zshrc
.
Upvotes: 3