This is my Init Script:
path = require 'path'
atom.workspaceView.command 'custom:semicolonize', ->
editor = atom.workspace.getActiveEditor()
editor.moveToEndOfLine()
editor.insertText(";\n")
This is what I get
Thanks for any help
This is my Init Script:
path = require 'path'
atom.workspaceView.command 'custom:semicolonize', ->
editor = atom.workspace.getActiveEditor()
editor.moveToEndOfLine()
editor.insertText(";\n")
This is what I get
Thanks for any help