Vim Tips Wiki
Advertisement

Installing on bash in Mac OSX

The markdown syntax-highlighting directions say:

  vim markdown-1.2.2.vba.gz + ":source % | quit!"

to install. In fact that will fail in bash due to the "!". This is a special character in bash, and must be escaped:

  vim markdown-1.2.2.vba.gz + ":source % | quit\!"
Advertisement