This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-08-05
Channels
- # announcements (1)
- # babashka (16)
- # beginners (36)
- # biff (1)
- # calva (2)
- # cider (4)
- # cljdoc (1)
- # clojure (118)
- # clojure-austin (2)
- # clojure-czech (2)
- # clojure-europe (19)
- # clojure-norway (3)
- # clojure-spec (8)
- # clojure-uk (3)
- # clojurescript (11)
- # conjure (1)
- # cursive (3)
- # datalevin (5)
- # datomic (7)
- # emacs (16)
- # events (1)
- # figwheel-main (3)
- # fulcro (5)
- # hyperfiddle (17)
- # jobs (2)
- # lsp (19)
- # malli (5)
- # nbb (10)
- # off-topic (5)
- # polylith (5)
- # re-frame (3)
- # reagent (11)
- # remote-jobs (2)
- # shadow-cljs (1)
- # spacemacs (7)
- # web-security (4)
Hi @borkdude I guess you have done much java interop stuff. I am facing an issue that, when writing java interop, I cannot jump to definition. For code completion, most time it doesn’t work too (e.g., .. form interop). I wonder how you overcome this hurdle.
Would you mind sharing with me how you pull up the docs? Open a webpage on java doc?
clojure-lsp does support navigating to a Java class btw, if it's on the classpath. It decompiles on the fly
global script-repo with bb.edn - using deps (on windows)...
I've got a repo with most of my bb-scripts, which I used by adding its src-directory in a preload-script via add-classpath. I am now using dependencies (via :deps in bb.edn, not add-classpath) - and my setup does not load them.
I need to use bb.edn because I generate an uberjar for my colleagues - I guess add-classpath would not work.
I am looking for a way that bb uses the bb.edn from that repository...
I handle the setup on my colleagues' systems with the uberjar and BABASHKA_CLASSPATH.
I like to be able to use bb -m mynamespace.core
on both their and my systems.
I don't want to fiddle around with DOS-Batch-scripts, So I am now thinking of using a preload-script - which should "activate" the bb.edn (mainly because of the dependencies declared there). I think I'll just parse :deps from the bb.edn and call add-classpath...
@U01BAKAA6HL Are you aware of --config
?
great! thanks!