From 057403cee8c9e071a05ef153c58a4c8e7a191454 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 29 Mar 2016 23:15:40 -0400 Subject: [PATCH] module-crystal: correct quickrun :exec --- modules/module-crystal.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/module-crystal.el b/modules/module-crystal.el index 57ec71e0a..1ee10fe86 100644 --- a/modules/module-crystal.el +++ b/modules/module-crystal.el @@ -11,7 +11,7 @@ (after! quickrun (quickrun-add-command "crystal" '((:command . "crystal") - (:exec . "%c run %s") + (:exec . "%c %s") (:description . "Run Crystal script")) :mode 'crystal-mode)))