-
-
Save jmacias/5eeac84e78a9dc9eae8688a5ce7ea98d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
atom.commands.add 'atom-text-editor', 'repl:eval-selected-sexp-and-replace', -> | |
if editor = atom.workspace.getActiveTextEditor() | |
if selected = editor.getSelectedText() | |
protoRepl.executeCodeInNs(selected, | |
{resultHandler: (result) -> | |
console.log(result) | |
editor.insertText(result.value)}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment