Skip to content

Commit

Permalink
cross platform R config
Browse files Browse the repository at this point in the history
  • Loading branch information
wuub committed Feb 21, 2012
1 parent c528ad6 commit 2a8a50c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config/R/Main.sublime-menu
Expand Up @@ -14,12 +14,14 @@
"args": {
"type": "subprocess",
"encoding": "utf8",
"cmd": ["r", "--interactive"],
"cmd": {"linux": ["R", "--interactive"],
"osx": ["R", "--interactive"],
"windows": ["R.exe", "--no-save"]},
"cwd": "$file_path",
"env": {}, // clean environment for subprocess repl
"extend_env": {}, // variables to be added to standard env
"cmd_postfix": "\n", // postfix that will be automatically added after a line in repl
"suppress_echo": false, // try to remove remote echo
"suppress_echo": true, // try to remove remote echo
"syntax": "Packages/R/R.tmLanguage"
}
}
Expand Down

0 comments on commit 2a8a50c

Please sign in to comment.