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