mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
fix(clojure): type error evilifying cider-debug keys
This commit is contained in:
@ -131,9 +131,10 @@
|
|||||||
(let* ((from (car replacement))
|
(let* ((from (car replacement))
|
||||||
(to (cadr replacement))
|
(to (cadr replacement))
|
||||||
(item (assoc from cider-debug-prompt-commands)))
|
(item (assoc from cider-debug-prompt-commands)))
|
||||||
;; Position matters, hence the update-in-place
|
(when item
|
||||||
(setf (car item) (car to))
|
;; Position matters, hence the update-in-place
|
||||||
(setf (cdr item) (cdr to))))
|
(setf (car item) (car to))
|
||||||
|
(setf (cdr item) (cdr to)))))
|
||||||
'((?h (?H "here" "Here"))
|
'((?h (?H "here" "Here"))
|
||||||
(?i (?I "in" "In"))
|
(?i (?I "in" "In"))
|
||||||
(?j (?J "inject" "inJect"))
|
(?j (?J "inject" "inJect"))
|
||||||
|
Reference in New Issue
Block a user