Guest User

Untitled

a guest
Dec 14th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. atom.commands.add 'atom-text-editor', 'custom:IO.inspect', ->
  2. editor = atom.workspace.getActiveTextEditor()
  3. editor.insertText( 'IO.inspect "======================================"\nIO.inspect \nIO.inspect "======================================"')
  4.  
  5.  
  6. atom.commands.add 'atom-text-editor', 'custom:console.log', ->
  7. editor = atom.workspace.getActiveTextEditor()
  8. editor.insertText('console.log("======================================");\nconsole.log();\nconsole.log("======================================");')
Add Comment
Please, Sign In to add comment