mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-23 11:30:23 +10:00
9 lines
204 B
EmacsLisp
9 lines
204 B
EmacsLisp
;;; lang/scheme/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defun +scheme/open-repl (&optional arg)
|
|
"Open the Scheme REPL."
|
|
(interactive "P")
|
|
(switch-to-geiser arg)
|
|
(current-buffer))
|