ex-mode/lib/ex.coffee

9 lines
239 B
CoffeeScript

class Ex
write: ->
if atom.workspace.getActiveTextEditor().getPath() isnt undefined
atom.workspace.getActiveEditor().save()
else
atom.workspace.getActivePane().saveActiveItemAs()
w: => @write()
module.exports = Ex