From 4f4475840a9d78b8a29227341144291d83eb878f Mon Sep 17 00:00:00 2001 From: Matus Goljer Date: Thu, 2 Jun 2022 18:37:03 +0200 Subject: [PATCH] feat(cmd): add explicit support for Cask, Eask or custom command --- overseer.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/overseer.el b/overseer.el index 17d449a..6721d70 100644 --- a/overseer.el +++ b/overseer.el @@ -47,7 +47,10 @@ (defcustom overseer-command "cask exec ert-runner" "The shell command for ert-runner." - :type 'string + :type '(radio + (const :tag "Run with cask exec ert-runner" "cask exec ert-runner") + (const :tag "Run with eask exec ert-runner" "eask exec ert-runner") + (string :tag "Run with custom command")) :group 'overseer) (defvar overseer-buffer-name "*overseer*"