mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
fix(factor): repl handler
Otherwise `+eval/open-repl-*` commands will emit "REPL handler X failed to return a buffer" errors. Fix: #7788 Co-authored-by: steve-ayerhart <steve-ayerhart@users.noreply.github.com>
This commit is contained in:
8
modules/lang/factor/autoload.el
Normal file
8
modules/lang/factor/autoload.el
Normal file
@ -0,0 +1,8 @@
|
||||
;;; lang/factor/autoload.el -*- lexical-binding: t; -*-
|
||||
|
||||
;;;###autoload
|
||||
(defun +factor/open-repl ()
|
||||
"Open the Factor Listener."
|
||||
(interactive)
|
||||
(call-interactively #'run-factor)
|
||||
(current-buffer))
|
Reference in New Issue
Block a user