This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-02-25
Channels
- # aatree (10)
- # beginners (59)
- # boot (314)
- # braveandtrue (4)
- # cider (50)
- # cljs-dev (12)
- # cljsrn (6)
- # clojure (206)
- # clojure-austin (2)
- # clojure-gamedev (90)
- # clojure-japan (1)
- # clojure-poland (12)
- # clojure-russia (10)
- # clojure-sg (1)
- # clojurescript (86)
- # core-async (2)
- # core-matrix (3)
- # cursive (40)
- # datomic (2)
- # dirac (13)
- # editors (25)
- # emacs (7)
- # hoplon (2)
- # immutant (10)
- # jobs (24)
- # jobs-discuss (1)
- # ldnclj (8)
- # lein-figwheel (19)
- # leiningen (1)
- # mount (7)
- # off-topic (34)
- # om (147)
- # onyx (11)
- # parinfer (151)
- # pedestal (2)
- # re-frame (31)
- # reagent (13)
- # ring-swagger (7)
- # spacemacs (1)
- # yada (11)
although in this code example it seems to me that the stderr shouldn't be attached to the server process
In 0.10.2, I'm often getting Wrong number of arguments: (0 . 0), 1
errors when trying cider commands. I don't get them when calling (load "dash")
right before calling the cider command, but am not sure whether it is directly related (got that from https://github.com/clojure-emacs/cider/issues/1343). is there anything I can do to fix it?
cider doesnβt use dash.el
anymore, so if you run into a problem like this - itβs definitely outside cider
thanks! i'm not using clj-refactor.el directly but will try to find out what includes dash.el then
ok apparently dash was just installed (maybe as a dependency of some old package), removed it
not so optional in my setup after all: https://gist.github.com/sander/5ce380b9be68a3e68dbb
actually, just watch a 5mins episode of http://parens-of-the-dead.com
haha checked your gist, it seems clj-refactor is in a good company with magit π β pun aside I understand the reasoning behind as few deps as possible @bozhidar π
tbh the main value dash still has that it brings elisp dev much closer to clojure coding
@fenton: in the repl buffer just C-x C-s and it'll prompt for a location to save the repl history to.
there's also options documented in the CIDER README for saving history on every REPL command as well as for what file to save it too.
I do have a series of fine libraries and http://conj.io which may be useful to you
ah this file only gets written on a clean exit...what wondering about continuous writing to it for recovery from a laptop crash
(require 'advice)
(advice-add 'cider-repl--add-to-input-history
:after #'(lambda (x)
(cider-repl-history-just-save)))
@arrdem: hmmm...doesn't allow me to enter things in my repl anymore... Is this intended to persist after each command in the REPL? Or requiring an explicit save of it?