Fork me on GitHub
#cider
<
2015-06-25
>
malabarba08:06:13

@akiva When you say 9.1 do you mean 0.9.1?

malabarba08:06:28

@arrdem it's probably easiest to just set it in dir locals.

bozhidar08:06:37

@arrdem: paragraph filling is in clojure-mode, not in CIDER

bozhidar08:06:00

as for the history - not right now

bozhidar08:06:11

we can always change this

bozhidar08:06:38

the problem with projects is that there aren’t always projects (e.g. what do we do in case of a remote connection)

bozhidar08:06:33

but for projects with local files dir-locals are a viable option

bozhidar09:06:20

can you paste here your profiles.clj?

akiva14:06:33

@bozhidar: I’m using Boot in this particular project:

(require 'boot.repl)
 
(swap! boot.repl/*default-dependencies*
       concat '[[cider/cider-nrepl "0.9.1"]])
 
(swap! boot.repl/*default-middleware*
       conj 'cider.nrepl/cider-middleware)

bozhidar16:06:02

looks good to me

akiva16:06:49

Yeah, it makes no sense.

akiva16:06:32

And Emacs is using cider-20150624.637.

bozhidar16:06:40

I doubt the problem is on the Emacs side

akiva16:06:18

I’m at a loss. Deleting cider from the .m2 repo doesn’t help either.

akiva17:06:53

Ah, progress a bit. It’s complaining about nrepl-refactor now.

akiva17:06:44

This sorts it:

(require 'boot.repl)
 
(swap! boot.repl/*default-dependencies*
       concat '[[cider/cider-nrepl "0.9.1"]
								[refactor-nrepl "1.1.0-SNAPSHOT"]])
 
(swap! boot.repl/*default-middleware*
       conj 'cider.nrepl/cider-middleware
						'refactor-nrepl.middleware/wrap-refactor)

arrdem17:06:27

@bozhidar: (context repl history) yeah here at work I'm doing ~90% of my coding on remote nREPL connections. That repl history is encoded in a "most recent first" list is somewhat baffling given the long history of appending shell history files... may try and patch that this weekend.

arrdem17:06:55

Also makes it awkward to try and pull out the last N commands as a session for sharing.

patcarlisle20:06:47

How does the format for clojure-backtracking-indent rules work?

patcarlisle20:06:27

i've failed to find documentation for this and the elisp function is pretty opaque to me...

postpunkjustin20:06:56

Yeah, I would also like to know