mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
9 lines
196 B
EmacsLisp
9 lines
196 B
EmacsLisp
;;; lang/clojure/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defun +clojure/repl ()
|
|
"Open a Cider REPL and return the buffer."
|
|
(interactive)
|
|
(cider-jack-in)
|
|
(current-buffer))
|