mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
lang/clojure: fix +clojure/repl
cider-jack-in takes one argument. Reported by @mfiano
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
;;; lang/clojure/autoload.el -*- lexical-binding: t; -*-
|
||||
|
||||
;;;###autoload
|
||||
(defun +clojure/repl ()
|
||||
(defun +clojure/repl (&optional arg)
|
||||
"Open a Cider REPL and return the buffer."
|
||||
(interactive)
|
||||
(cider-jack-in)
|
||||
(interactive "P")
|
||||
(cider-jack-in arg)
|
||||
(current-buffer))
|
||||
|
||||
;;;###autoload
|
||||
|
Reference in New Issue
Block a user