Disable the label "_" underscore "<-" in the Vim R plugin

By default, Vim-R-plugin inserts <- whenever I type or insert an underscore _ . This creates a problem when I insert files such as geom_bar , which becomes geom <- bar . Is there a way to disable this reduction?

I tried to look at the manual (scroll down to the "Edit"), but could not figure out how to do it.

I am using Vim-R-plugin Version 0.9.9.9 for version Vim 7.4.

+6
source share
1 answer

On the plugin's help page:

6.3. Assignment and Completion Operator Rnoweb Code

...

To turn off this feature, enter your vimrc:

let vimrplugin_assign = 0

+11
source

All Articles