2

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?

Community
  • 1
  • 1
Md Mazedul Islam Khan
  • 5,318
  • 4
  • 40
  • 66

3 Answers3

3

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.

1

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

Rômulo Collopy
  • 944
  • 9
  • 13
1

I solved it by this, you may try it:

brew unlink vim
brew link macvim
narutoop
  • 11
  • 1