Fork me on GitHub
#cider
<
2016-08-04
>
yusup07:08:47

I downgraded everything to stable.

yusup07:08:02

now all good.

yusup07:08:15

(add-to-list 'package-archives '("melpa" . "") t)

yusup07:08:36

stable melpa repo and stable cider-nrepl version

pyr12:08:02

If you're interested in handling dependencies in a way that allows you to prefer melpa-stable over melpa, I wrote a tool specifically for it: https://github.com/pyr/emenv and exemple Emenv file which pulls-in cider from melpa-stable: https://github.com/pyr/dot.emacs/blob/master/Emenv

fenton16:08:10

anyone have issues with getting cider debug working?

radon16:08:29

If you don’t want to add an extra library, putting

(setq package-pinned-packages
      '((cider . "melpa-stable")))
in your init.el will suffice to prefer melpa-stable over melpa for any particular package.

borkdude18:08:17

next to print-length is there a way to control the amount of lines printed in a text?

borkdude18:08:51

for example: (print (apply str (repeat 100 "hoi\n")))) only prints 3 lines instead of 100?