mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-22 02:50:24 +10:00
16 lines
339 B
EmacsLisp
16 lines
339 B
EmacsLisp
;;; lang/ess/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defun +ess/open-julia-repl (&optional arg)
|
|
"Open an ESS Julia REPL"
|
|
(interactive "P")
|
|
(run-ess-julia arg)
|
|
(current-buffer))
|
|
|
|
;;;###autoload
|
|
(defun +ess/open-r-repl (&optional arg)
|
|
"Open an ESS R REPL"
|
|
(interactive "P")
|
|
(run-ess-r arg)
|
|
(current-buffer))
|