yoni
yoni

Reputation: 5996

Vim R Plugin broken after OS X Mountain Lion Upgrade

After upgrading OS X from Lion to Mountain Lion, I receive the following warning whenever I open an R file:

Please, set the variable 'g:vimrplugin_term_cmd' in your .vimrc.^@Read the plugin documentation for details.

Any idea why this doesn't work? What's changes in Lion to make the plugin OS X not be able to find Terminal?

Upvotes: 3

Views: 576

Answers (1)

yoni
yoni

Reputation: 5996

After looking at the R Vim plugin documentation, it seems that the default values for vimrplugin_term on OS X are not the same as those in Mountain Lion.

Adding the following line to your .vimrc should solve the problem:

let vimrplugin_term = "/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal"

Upvotes: 7

Related Questions