isthisthat
isthisthat

Reputation: 165

disable underscore replacement in neovim r-plugin

In vim, this could be turned off as such: Disable underscore "_" shortcut inserting "<-" in Vim R plugin

What is the equivalent in neovim?

Upvotes: 1

Views: 218

Answers (1)

isthisthat
isthisthat

Reputation: 165

Adding this to .nvimrc did the trick:

let R_assign = 0

Upvotes: 1

Related Questions