This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-09-06
Channels
- # beginners (147)
- # boot (12)
- # chestnut (12)
- # cider (22)
- # clara (10)
- # cljs-dev (6)
- # cljs-experience (3)
- # cljsrn (12)
- # clojure (58)
- # clojure-austin (3)
- # clojure-dusseldorf (25)
- # clojure-finland (20)
- # clojure-gamedev (1)
- # clojure-greece (3)
- # clojure-italy (32)
- # clojure-new-zealand (5)
- # clojure-russia (12)
- # clojure-serbia (1)
- # clojure-spec (4)
- # clojure-uk (51)
- # clojurescript (75)
- # cursive (8)
- # datomic (81)
- # fulcro (29)
- # graphql (16)
- # heroku (6)
- # incanter (1)
- # keechma (1)
- # lumo (44)
- # off-topic (21)
- # onyx (22)
- # parinfer (5)
- # portkey (40)
- # re-frame (43)
- # reagent (5)
- # spacemacs (37)
- # specter (8)
- # unrepl (3)
Do y'all ever undo a couple dozen changes, then maybe yank a line or two into a register, then try to redo those changes and get the following error in your minibuffer?
Unrecognized entry in undo list undo-tree-canary
It breaks redo at that point, which is pretty frustrating.
@jeff.terrell sounds like upstream issue in undo-tree.el
That's what I'm afraid of. Might try to keep an eye out next time it happens to see if I can find a reproducible triggering process. Thanks @ag.
Does anyone know how to display the full path in the powerline ? Seeing only core.clj
is really not ideal.
@U3LP7DWPR not exactly the solution but I quite frequently use SPC f y
to show and copy the full path.
That's what I do too.
Oh nice! Didn't know about that in vim. (I always used C-g to do the same thing.) Looks like :f
is different from SPC f y
in Spacemacs because the former doesn't copy the filename to the clipboard.
@U077BEWNQ there's a way 😉
Oooh, nice. Thanks! I'd been thinking of writing a fn to do it, but I'm quite happy it's already there.
you can bind this to a key ((kill-new (cider-current-ns)
and voila you have a way to copy current ns to the kill-ring
And I can run it as a line of emacs lisp, and it works -- it just wasn't showing up in SPC :
/ M-x
then switch to clj/cljs file (make sure you are connected) and then M-: (cider-current-ns)
Ahhhhh. That would do it. Thanks! That clues me in to not just that, but a broader useful point.
Oh fantastic. Did not know that that's what interactive
meant! Nice one @ag.
this, especially the spaceline segments file is a good place to start along with (cider-current-ns)
, it should be fairly simple
@jeff.terrell yes, and it's horrible when it happens ðŸ˜