Clojure: Fix a error caused by mess writing.
In this case, `mode` should be fixed to `m` .
This commit is contained in:
parent
8825a06705
commit
fdf73e9234
1 changed files with 2 additions and 2 deletions
|
@ -213,7 +213,7 @@ If called with a prefix argument, uses the other-window instead."
|
|||
clojurex-mode
|
||||
cider-repl-mode))
|
||||
(mapc (lambda (x) (spacemacs/declare-prefix-for-mode
|
||||
mode (car x) (cdr x)))
|
||||
m (car x) (cdr x)))
|
||||
cider--key-binding-prefixes)
|
||||
(spacemacs/set-leader-keys-for-major-mode m
|
||||
"ha" 'cider-apropos
|
||||
|
@ -308,7 +308,7 @@ If called with a prefix argument, uses the other-window instead."
|
|||
clojurex-mode
|
||||
cider-repl-mode))
|
||||
(mapc (lambda (x) (spacemacs/declare-prefix-for-mode
|
||||
mode (car x) (cdr x)))
|
||||
m (car x) (cdr x)))
|
||||
clj-refactor--key-binding-prefixes)
|
||||
(dolist (r cljr--all-helpers)
|
||||
(let* ((binding (car r))
|
||||
|
|
Reference in a new issue