overtone / emacs-live

M-x start-hacking
http://overtone.github.com/emacs-live/
Other
1.51k stars 241 forks source link

Keybinding suggestions #183

Open arichiardi opened 9 years ago

arichiardi commented 9 years ago

A couple of suggestions for this wonderful emacs bundle. I have noticed that clojure-mode's paredit-forward-down was masked in cider-mode and I had to define my:

(define-key cider-mode-map (kbd "C-M-i") nil)

Moreover, given that at the moment paredit-forward-down is bound to C-M-i and C-M-d I think it makes sense (also cause of the d letter) to bind live-paredit-delete-horizontal-space:

;; My clojure mode
(define-key clojure-mode-map (kbd "C-M-d") nil)
(define-key clojure-mode-map (kbd "C-M-d") 'live-paredit-delete-horizontal-space)

And a question: when I start working on a Clojure file auto-complete works as expected, but then, when I fire up a repl and the switch it off, auto-complete stops working. Do you know why?