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>
8 lines
202 B
EmacsLisp
8 lines
202 B
EmacsLisp
;;; lang/factor/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defun +factor/open-repl ()
|
|
"Open the Factor Listener."
|
|
(interactive)
|
|
(call-interactively #'run-factor)
|
|
(current-buffer))
|