lang/clojure: conform command to naming convention

Interactive commands in doom follow the `+module/name` naming convention. `+module|name` is used for hook functions.
This commit is contained in:
Henrik Lissner 2018-10-16 02:07:00 -04:00 committed by GitHub
parent 4fc7de442e
commit bef0f39535
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@
("^\\*cider-repl" :quit nil :select nil)
("^\\*cider-repl-history" :vslot 2 :ttl nil)))
(defun +clojure|cider-switch-to-repl-buffer-and-switch-ns ()
(defun +clojure/cider-switch-to-repl-buffer-and-switch-ns ()
(interactive)
(cider-switch-to-repl-buffer t))
@ -93,7 +93,7 @@
:n "r" #'cider-refresh
:n "R" #'cider-restart
:n "b" #'cider-switch-to-repl-buffer
:n "B" #'+clojure|cider-switch-to-repl-buffer-and-switch-ns
:n "B" #'+clojure/cider-switch-to-repl-buffer-and-switch-ns
:n "c" #'cider-repl-clear-buffer)))
(when (featurep! :feature evil +everywhere)