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?
Asked
Active
Viewed 6,249 times
2

Community
- 1
- 1

Md Mazedul Islam Khan
- 5,318
- 4
- 40
- 66
-
Where did you put the `mvim` script you downloaded with MacVim.app? – romainl Feb 05 '16 at 12:51
-
I downloaded the MacVim from here: https://github.com/macvim-dev/macvim/releases/tag/snapshot-95 and there's no mvim script when I downloaded the MacVim.dmg – Md Mazedul Islam Khan Feb 05 '16 at 15:35
-
[Hmm… yes there is](http://i.imgur.com/qeV0Ng9.png). – romainl Feb 05 '16 at 16:00
3 Answers
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
.
-
I didn't notice the `mvim` script is available on the `MacVim.dmg` package. Everything is good now. – Md Mazedul Islam Khan Feb 05 '16 at 15:37
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