This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-09-24
Channels
- # admin-announcements (17)
- # alda (5)
- # aws (4)
- # beginners (19)
- # boot (80)
- # bristol-clojurians (3)
- # cider (15)
- # clojure (257)
- # clojure-berlin (1)
- # clojure-czech (1)
- # clojure-indonesia (1)
- # clojure-nl (1)
- # clojure-poland (1)
- # clojure-russia (77)
- # clojurescript (186)
- # core-async (7)
- # core-typed (6)
- # cursive (8)
- # datomic (2)
- # devcards (2)
- # editors (45)
- # emacs (23)
- # hoplon (83)
- # jobs (1)
- # ldnclj (106)
- # leiningen (43)
- # off-topic (4)
- # onyx (31)
- # reagent (10)
- # yada (1)
Alt-w and crtl-y was hard to get used to.. just installed evil-mode instead
Do folks really use those keybindings?
The default emacs key bindings tend to work all over the place in OSX, so they've become muscle memory for me.
ah, that must help, yes
hey all! So I'm learning cider-repl mode, and M-r (which is prev-matching-input) is overshadowed by M-r from paredit. I wonder if there is an easy way to bring cider's binding on top?
@asolovyov: it occurs to me that the most convenient option is to make your own keymap
a bit of googling around brought me to this idea as well http://stackoverflow.com/questions/683425/globally-override-key-binding-in-emacs
makes for an easy way to toggle back and forth as well
@asolovyov: if you just want to do this for clojure-mode, you can toss a lambda to rebind it into the clojure-mode-hook
without the whole keymap
i'm not sure if you can just unbind it from paredit's keymap and then cider's keymap will be left
but could be worth a try
that's different functions (paredit-splice-sexp-killing-backward and paredit-raise-sexp), but I don't see any difference
(add-hook 'clojure-mode-hook (lambda () (define-key paredit-mode-map (kbd "M-r") nil)))
I think
i don't use paredit so i don't know the keymap name