mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-22 11:00:27 +10:00
9 lines
215 B
EmacsLisp
9 lines
215 B
EmacsLisp
;;; lang/terra/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defun +terra/open-repl ()
|
|
"Open Terra REPL."
|
|
(interactive)
|
|
(terra-start-process "terra" "terra")
|
|
(pop-to-buffer terra-process-buffer))
|