From b860fd760c66327168129a062a229ca17be323b6 Mon Sep 17 00:00:00 2001 From: Daniel Rivas Perez Date: Sat, 13 Oct 2018 11:05:27 +0100 Subject: [PATCH] Fixed shell popup broken on macOS Shell popup was broken, removing the '.' fixed it. --- layers/+tools/shell/funcs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/+tools/shell/funcs.el b/layers/+tools/shell/funcs.el index e68e3e329..63e8dd3ff 100644 --- a/layers/+tools/shell/funcs.el +++ b/layers/+tools/shell/funcs.el @@ -46,7 +46,7 @@ (let ((shell (case shell-default-shell ('multi-term 'multiterm) ('shell 'inferior-shell) - (t . shell-default-shell)))) + (t shell-default-shell)))) (call-interactively (intern (format "spacemacs/shell-pop-%S" shell))))) (defun spacemacs/resize-shell-to-desired-width ()