Skip to content

Commit

Permalink
[clojure] Change leader key to fix warning
Browse files Browse the repository at this point in the history
Fix this warning when reloading spacemacs configuration:

```
Error (use-package): cider/:init: Key sequence e p ; starts with non-prefix key e p
```
  • Loading branch information
v2okimochi authored and smile13241324 committed May 11, 2020
1 parent 4e2ce45 commit c54de3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.develop
Original file line number Diff line number Diff line change
Expand Up @@ -1568,6 +1568,8 @@ Other:
~SPC m e p f~ 'cider-pprint-eval-defun-at-point
~SPC m e p e~ 'cider-pprint-eval-last-sexp
(thanks to John Stevenson)
- Changed evaluation keybinding - cider-clojure-interaction-mode
~SPC m e p l~ 'cider-eval-print-last-sexp
- Fixes:
- Removed =cider.nrepl/cider-middleware= in lein quick start setting
- Fixed =cider-inspector-prev-page= binding, also add ~p~ as another key
Expand Down
2 changes: 1 addition & 1 deletion layers/+lang/clojure/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
(spacemacs/set-leader-keys-for-major-mode 'cider-repl-mode
"," 'cider-repl-handle-shortcut)
(spacemacs/set-leader-keys-for-major-mode 'cider-clojure-interaction-mode
"ep" 'cider-eval-print-last-sexp))
"epl" 'cider-eval-print-last-sexp))
:config
(progn
;; add support for golden-ratio
Expand Down

0 comments on commit c54de3c

Please sign in to comment.