Fork me on GitHub
#emacs
<
2016-07-16
>
wei01:07:00

what’s a good way to redefine some of the inf-clojure shortcut keys? my elisp is weak..

maxim02:07:47

@wei

(require 'inf-clojure)
(define-key inf-clojure-mode-map (kbd "C-j") 'delete-indentation)

wei08:07:25

@mkaschenko: thanks! works for me.