Skip to content

Commit

Permalink
fix(ess): return a repl instead of a buffer
Browse files Browse the repository at this point in the history
Fix: #6235
  • Loading branch information
maikol-solis committed Dec 2, 2024
1 parent 30cbabb commit 667b452
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions modules/lang/ess/autoload.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@
(defun +ess/open-julia-repl (&optional arg)
"Open an ESS Julia REPL"
(interactive "P")
(run-ess-julia arg)
(current-buffer))
(run-ess-julia arg))

;;;###autoload
(defun +ess/open-r-repl (&optional arg)
"Open an ESS R REPL"
(interactive "P")
(run-ess-r arg)
(current-buffer))
(run-ess-r arg))

0 comments on commit 667b452

Please sign in to comment.