Fork me on GitHub
#cider
<
2016-07-29
>
voxdolo16:07:39

So for a poor, dumb spacemacs user... anyone know how to get it to pick up on the edit I made to cider.el, as was recommended above?

voxdolo16:07:00

I'm dead in the water ATM and pretty sad 😕

dpsutton16:07:34

should be a notion of eval-buffer. If you eval the buffer then the newly evaluated code overwrites any previously evaluated code

voxdolo16:07:48

dpsutton: that did it. thanks 🙂

dpsutton16:07:00

no problem. glad it worked out

ccann18:07:14

Anyone know how to jump the cursor to the next (defn form in the buffer?

shader19:07:12

I don't think there is one... there are forward-sexp and forward-paragraph

shader19:07:33

you could roll your own pretty easily

radon19:07:56

@voxdolo: If you’re making edits to package code, you also want to be sure to delete the .elc version of the file you edited, since that will override the .el version (I think).

shader19:07:22

@ccann you can just eval that in scratch and bind it to a key

voxdolo20:07:31

@radon: cool, thanks for the heads-up