Fork me on GitHub
#emacs
<
2017-01-09
>
beppu08:01:34

I wrote an intro to Spacemacs that may be useful to some of you. http://beppu.github.io/post/spacemacs-tips/

beppu08:01:14

I may do a post on Spacemacs' clojure layer which I've found very pleasant although it has one minor bug that could be very confusing. (It's cider-jack-in doesn't switch to the repl automatically, so it's hanging around in a hidden buffer.)

bja20:01:59

@beppu to be fair, SPC m s s will jump to that hidden buffer for you

beppu20:01:26

Does it? Let me try that.

bja20:01:46

I think. Let me make sure it's not one of my customizations....

bja20:01:25

SPC m s s runs the command cider-switch-to-repl-buffer, which is an interactive
compiled Lisp function in `cider-mode.el'.

beppu20:01:02

Yeah, that works.

beppu20:01:29

It just wasn't obvious the first time I did SPC m ' -- I was waiting around for the repl to show up, and then I discovered the buffer when I was switching around buffers.

beppu20:01:07

I could have sworn back when I was using emacs-live, cider-jack-in would drop you right in the repl.

beppu20:01:37

I wonder why that's not the case in Spacemacs' clojure layer.

caio20:01:48

cider-repl-pop-to-buffer-on-connect controls this

beppu20:01:09

@caio That's good to know. Thanks.