I am trying to write my first line in R using sublime text.
First I installed the SublimeREPL and enhance R packages. I edited the user settings to:
{
"default_extend_env": {"PATH": "{PATH};~/Applications/R.app"},
"show_transferred_text": true
}
Now I can launch REPL r without any trouble. What I'd like to do know is to write some R code in one of my tabs and execute it automatically in the REPL r window. What is happening now is when I use the cmd+enter shortcut to execute my selected code, it is executed but in the R.app console not in my REPL [r] window in sublime.
How can I fix this?
Thanks