2018-03-22 06:54:18 -04:00
|
|
|
;;; 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))
|
2018-10-16 02:09:24 -04:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun +clojure/cider-switch-to-repl-buffer-and-switch-ns ()
|
|
|
|
"TODO"
|
|
|
|
(interactive)
|
|
|
|
(cider-switch-to-repl-buffer t))
|