I have been writing R scripts in Vim for some time now. Starting an hour ago, I began facing an issue that every time I type an underscore (_
), it gets automati
It may be also worthwhile to add that a convenient setting may involve re-assigning the operator, for instance the .vimrc
setting:
" Nvim-R extra settings
"" Change assignment operator
let R_assign_map = "|"
Would assign the r assignment operator <-
to Shift+|. This feature is described ithe provided documentation. In the R_assign
section.