diff --git a/lib/ex.coffee b/lib/ex.coffee index 684b2f6..71fc153 100644 --- a/lib/ex.coffee +++ b/lib/ex.coffee @@ -71,6 +71,9 @@ class Ex @registerCommand: (name, func) => @singleton()[name] = func + @registerAlias: (alias, name) => + @singleton()[alias] = @singleton()[name] + quit: -> atom.workspace.getActivePane().destroyActiveItem()