Skip to content

Commit

Permalink
Remove duplicate keybinding (#3719)
Browse files Browse the repository at this point in the history
This keybinding was first introduced in the commit[1].  There are two
lines of keybindings to `C-c C-q`, probably due to a simple
mistake.

[1]: 6a9bc1c
  • Loading branch information
conao3 committed Jun 29, 2024
1 parent 105da31 commit 20f9a8f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

- [#3714](https://github.com/clojure-emacs/cider/pull/3714): Show progress when evaluating files using `cider-load-all-files`.
- [#3713](https://github.com/clojure-emacs/cider/pull/3713): Optimize `nrepl-dict-get` and deprecate its 3-argument arity.
- [#3719](https://github.com/clojure-emacs/cider/pull/3719): Clean duplicate define-key

### Bugs fixed

Expand Down
1 change: 0 additions & 1 deletion cider-connection.el
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,6 @@ REPL defaults to the current REPL."
(define-key map (kbd "j d") #'cider-describe-connection)
(define-key map (kbd "j i") #'cider-describe-connection)
(define-key map (kbd "C-c C-q") #'cider-quit)
(define-key map (kbd "C-c C-q") #'cider-quit)
(define-key map (kbd "C-c C-r") #'cider-restart)
(define-key map (kbd "C-c M-r") #'cider-restart)
(define-key map (kbd "C-c C-d") #'cider-describe-connection)
Expand Down

0 comments on commit 20f9a8f

Please sign in to comment.