Fork me on GitHub
#emacs
<
2017-07-09
>
moogey04:07:20

Is there a way to make emacs not pop open an error buffer when a symbol can’t be resolved?

benedek10:07:22

you can make the error buffer not pop up

benedek10:07:34

if that is what you mean

benedek10:07:16

don't remember the name of the defcustom but should be quite intuitive

benedek10:07:46

or just check my benedekfazekas/emacsd

ajs10:07:00

i have a project for which I used to use cider, on a different machine. I'm trying to run it without cider, just with lein repl. i get this: Caused by: java.lang.RuntimeException: No such var: trace/traceable?, compiling:(cider/nrepl/middleware/trace.clj:13:11)

ajs10:07:20

there is no cider in my profiles.clj, my project.clj at all. i'm not even in emacs. why is it compiling cider?

ajs10:07:08

i also have no profiles in .lein/

dpsutton14:07:15

you can run lein deps :tree and see if its coming in that way

ajs17:07:18

@dpsutton looks like there is a dependeny figwheel sidecar, which then depends on cider. i don't use cider. Does this mean that this project, which I am collaborating on, has a build process that is dependent on your clojure editor?!

ajs17:07:51

that seems dangerous to me to have project settings that depend on the editor a developer chooses to use, how fragile

dpsutton17:07:26

Sounds like it. I'm not too familiar with cljs config but this should be listed as a plug-in or Dev dependency

dpsutton17:07:46

The setting can probably be moved to a profile

ajs17:07:20

figwheel is listed in the project.clj :profiles :dev :dependencies, but i need to use :dev as well