Fork me on GitHub
#cursive
<
2016-01-25
>
thosmos08:01:52

@cfleming: just bought a personal license but am getting an invalid license error

cfleming09:01:24

@thosmos: Does your licence certificate have a blank line in it, between the #00xxxx line and the the hex part?

cfleming09:01:37

And you’re copying the whole thing, including the BEGIN LICENCE and END LICENCE lines?

thosmos09:01:56

yes and yes (just DM'd you)

jori10:01:31

Hi, I'm adding a clojure component to a biggish java multimodule project. I was hoping that the Java modules that the clojure component depends on would be compiled and added to the classpath when I run the clojure repl. This does not happen. Is this a feature request, a bug, or a user error?

polymeris16:01:32

Hi. Relatively new to both idea & cursive. What config files do you recommend including in .gitignore?

polymeris17:01:50

Maybe it's easiest to just ignore everything idea-related

imre17:01:14

I usually mix and match from what's there

timgilbert17:01:19

@polymeris: as far as Idea-specific things, I've got .idea and *.iml in mine

polymeris17:01:03

thanks, @imre. There is some stuff, e.g. .idea/replstate.xml that is in none of those files, but seems like a good starting point

polymeris17:01:35

Yeah, that might be the simples, @timgilbert. Just means everyone has to setup their own project. No big deal.

imre17:01:10

@polymeris check out the general folder - editor-specific files are there

imre17:01:23

There's one for all jetbrains ides

polymeris17:01:23

Yup. But it suggests either ignoring everything idea-related or some specific files (commented), which do not include cursive files.

polymeris17:01:34

I think I'll just go with the ignore everything option.

imre17:01:51

Pretty much the entire .idea folder can be ignored

imre17:01:00

And it probably should

polymeris17:01:01

(Where everything = *.iml & .idea)

cfleming18:01:46

.iml can be ignored if you’re using Leiningen since they’ll be regenerated on every sync (i.e. project open)

cfleming18:01:05

I check in everything in .idea except workspace.xml and replstate.xml

cfleming18:01:25

@polymeris @imre: In teams this can sometimes be annoying since the config files can change depending on the plugins each dev has installed.

imre18:01:04

@cfleming @polymeris I try not checking in anything editor-specific. There's a chance others will use a completely different env, or that I will be working on a project from different machines with different configs even

sveri19:01:39

@cfleming: @polymeris I agree with what @imre said. I consider it good practice to only commit source files. Especially editor related files should be kept out of source control.