2019-07-20 23:59:29 -05:00
|
|
|
;;; lang/scheme/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
;;;###autoload
|
2019-10-07 14:08:58 -04:00
|
|
|
(defun +scheme/open-repl (&optional arg)
|
2019-07-20 23:59:29 -05:00
|
|
|
"Open the Scheme REPL."
|
|
|
|
(interactive "P")
|
|
|
|
(switch-to-geiser arg)
|
|
|
|
(current-buffer))
|