https://raw.githubusercontent.com/jalvesaq/Nvim-R/master/doc/Nvim-R.txt
Section 6 of that document, ctrlF + Nvim-R-options
I'm new to vim, not sure what to do with that information. I want to disable |R_assign|, or possibly reverse the way it works so a double underscore produces a <- in insert mode.
Could someone point me in the right direction please?
The usually recommended method to disable is to add this line to your ~/.vimrc file:
But unfortunately it doesn't work (at least for me).
When you go through the .vim script files installed by the plugin, the answer lies in lines 2844-2847 of common_global.vim file in the source code:
So the real solution is to add this line to your ~/.vimrc file:
An easy one-liner to do the job for you (if you use a Unix-like system):
Do not forget to put two directions as ">>" in order to append and not replace.