From 5d06604d412c49e4dc73941b304f8d1623365aa8 Mon Sep 17 00:00:00 2001 From: jazzpi Date: Sat, 18 Apr 2015 12:37:45 +0200 Subject: [PATCH] Fix `:x` throwing an error --- lib/ex.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ex.coffee b/lib/ex.coffee index 07ecc78..5c99084 100644 --- a/lib/ex.coffee +++ b/lib/ex.coffee @@ -145,7 +145,7 @@ class Ex wq: (args...) => @write(args...).then => @quit() - x: => @wq() + x: (args...) => @wq(args...) wa: -> atom.workspace.saveAll()