From d904488d63f8bba07dccce519b7ddd774c865aab Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 26 Nov 2020 10:52:20 +0100 Subject: [PATCH] Helm: Set up helm-switch-to-repl. --- .emacs.d/lisp/init-helm.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.emacs.d/lisp/init-helm.el b/.emacs.d/lisp/init-helm.el index c999d52e..a396a65a 100644 --- a/.emacs.d/lisp/init-helm.el +++ b/.emacs.d/lisp/init-helm.el @@ -367,4 +367,7 @@ Useful for Guix." (defmethod helm-setup-user-source ((source helm-moccur-class)) (setf (slot-value source 'action-transformer) 'helm-occur-action-transformer)) +(when (require 'helm-switch-to-repl nil :noerror) + (helm-switch-to-repl-setup)) + (provide 'init-helm)