This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-09-17
Channels
- # admin-announcements (17)
- # announcements (1)
- # aws (8)
- # beginners (5)
- # boot (125)
- # cider (28)
- # clojure (33)
- # clojure-berlin (21)
- # clojure-italy (1)
- # clojure-japan (1)
- # clojure-nl (12)
- # clojure-poland (90)
- # clojure-russia (120)
- # clojurescript (284)
- # clojurex (2)
- # cursive (6)
- # datomic (14)
- # devcards (4)
- # events (2)
- # funcool (2)
- # hoplon (238)
- # ldnclj (32)
- # off-topic (27)
- # onyx (9)
- # re-frame (3)
- # reagent (22)
I'm stumped, setting up a new machine for a new employee here, and we're getting 'Symbol's function definition is void: clojure-project-dir'
Thing is, gitk indicates the function has always been there, but I can't see where it's defined
oh, maybe clojure-project-dir is in another package
ah, that's working now, I guess cider assumes clojure-mode is install (isn't there some kind of dependency decl ability in emacs packages?)
@malcolmsparks: Yes clojure-mode is a dependency of Cider. If you install Cider with the package manager clojure-mode will get pulled along.
ah, but not if you just do package-install right?
I mean, I usually use package-install-packages as my interface
but I think our new starter did package-install
ok, well I don't know what happened in that case, but thanks anyway
generally this happens when you’ve had clojure-mode
installed before installing cider
because the package versions there are meaningless dependencies aren’t properly resolved
is there a way i can store cider-connect args in config? i can pass them easily enough with C-u M-x cider-jack-in but it'd be nicer if i could store those args somewhere ideally project-specific
jcsims: i considered that approach, but it's a multi-user project and i'm hoping to find something specific to my editor that won't collide with general usage
both happen with this project. i prefer straight-up cider-jack-in.
seems like a combination of :repl-options https://github.com/technomancy/leiningen/blob/master/sample.project.clj#L335 and cider-known-endpoints
would get you there