Skip to content

Instantly share code, notes, and snippets.

View nickbloom's full-sized avatar

Nick Bloom nickbloom

View GitHub Profile
@tomschenkjr
tomschenkjr / send-to-R-new-line.sublime-macro
Created June 5, 2012 17:20
Send a selection of code to R using SublimeREPL and move cursor to new line
// Purpose: This is a macro which will send a selection of text to sublimeREPL.
// Note: Add this to your macros, which can be accessed from Tools > Macros or saving to your Sublime Text Packages folder.
[
{"command": "repl_transfer_current", "args": {"scope": "selection"}}
{"command": "move", "args": {"by": "lines", "forward": true}}
]