1

Why the alias

alias vim= 'mvim -m'

is generating this error:

-bash: alias: mvim -v: not found

?

Curious
  • 13
  • 4

1 Answers1

1

Remove the space after the = sign from your alias definition. Write alias vim='mvim -m'. It should work.

Check this answer also for a detailed explanation.

anotherone
  • 680
  • 1
  • 8
  • 23