Fork me on GitHub
#cursive
<
2017-04-05
>
cfleming06:04:57

@puzzler @wilkerlucio Right, this change will only affect the namespace used when running REPL Commands, or when using the “Execute immediately” from the REPL history search

cfleming06:04:18

Executing from the REPL editor will always use the current REPL ns.

cfleming06:04:15

@kenny Why does it not work well to have multiple modules under a single git repo? That’s what I do with Cursive, and it works fine.

isak16:04:01

Is there an easy way to get Cursive to stop searching through clojurescript compiled files and .cache output?

isak16:04:20

(with control-shift-F dialog)

cfleming20:04:51

@isak You can exclude those directories. Cursive should do that automatically if those output dirs are configured in your project.clj, though. How do you have those configured there?

isak20:04:19

@cfleming Ah, cool. For some of dev only builds, they are in a figwheel.edn file only, and not in the project file. Could this be the issue?

cfleming21:04:13

@isak Indeed, Cursive doesn’t read figwheel.edn files, and it seems like it should. I’ve filed https://github.com/cursive-ide/cursive/issues/1703

cfleming22:04:27

@isak So does figwheel.edn contain the same info you would put in project.clj, but it’s only used when you’re just using sidecar? e.g. using something like the CLJS quickstart?

isak22:04:24

@cfleming yea, it is a path of the project.clj taken out into its own file. I'm not sure if it is only for sidecar, or if it can be used for normal figwheel also.

cfleming22:04:57

Ok, thanks, I’ll check with Bruce

cfleming22:04:18

Although if you’re not seeing those paths set up, it looks like it’s not being merged into the project.

isak22:04:23

What I've done is to only have my prod builds in project.clj, to make cljsbuild work, but cljsbuild does not really make sense to use for development anymore since figwheel

cfleming22:04:03

Yeah, I get that.

cfleming22:04:32

Ok, I’ll see if I can get some clarification from Bruce and I’ll work out what Cursive needs to do there.

isak22:04:42

for figwheel sidecar, we use a script/figwheel.clj file to start a figwheel repl.

isak22:04:51

Sounds good 👍