jalvesaq / Nvim-R

Vim plugin to work with R
GNU General Public License v2.0
968 stars 125 forks source link

How do disable the _ behaviour? #777

Closed Unaimend closed 1 year ago

Unaimend commented 1 year ago

Hello people is there any way to disable the conversion of "single-press" _ to <- ?

Thank you for your help :)

jalvesaq commented 1 year ago

vimrc:

let R_assign = 0

init.lua:

vim.g.R_assign = 0

There are many other options in the documentation that you may want to change.

Unaimend commented 1 year ago

Thanks, I of course looked in the doc, but did not see this :). So thank you very much :)