This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-12-06
Channels
- # adventofcode (106)
- # aleph (1)
- # announcements (1)
- # asami (14)
- # babashka (120)
- # beginners (54)
- # calva (106)
- # chlorine-clover (33)
- # clj-kondo (5)
- # cljdoc (3)
- # cljs-dev (3)
- # clojure (92)
- # clojure-android (1)
- # clojure-australia (2)
- # clojure-europe (24)
- # clojure-italy (3)
- # clojure-nl (5)
- # clojure-uk (16)
- # clojuredesign-podcast (1)
- # clojurescript (29)
- # code-reviews (58)
- # conjure (16)
- # core-logic (4)
- # cursive (9)
- # datalevin (2)
- # graphql (20)
- # gratitude (7)
- # jackdaw (11)
- # java (9)
- # jobs (2)
- # lsp (23)
- # minecraft (1)
- # missionary (28)
- # off-topic (5)
- # polylith (5)
- # react (1)
- # reagent (12)
- # releases (1)
- # remote-jobs (4)
- # reveal (7)
- # shadow-cljs (8)
- # slack-help (1)
- # tools-deps (11)
- # vim (6)
Is it possible to go to symbol definitions inside a jar.
Use case:
1. In my code base I have: (defn foo [] (bar))
2. bar comes from a 3rd party dep: (defn bar [] (baz))
3. Is there a way to go to baz
definition?
Oh you mean to find the symbol through nrepl. Right?
Do I need to launch the REPl with nrepl and cider-repl? Could you share a lein command line?
I don't think cider is necessary, I have not used lein in ages to be honest. But if necessary you can include it like this https://github.com/technomancy/leiningen/blob/c4e3aad27bb267bba11e5330119afc03a6d36719/sample.project.clj#L191
I tried and something weird happens.
When I do <localleader>gd
it tries to open a file named
~/prj/zipfile:/home/viebel/.m2/repository/metosin/malli/0.6.2/malli-0.6.2.jar::malli/core.cljc
Of course it fails
This is a bug on conjure probably. As people started to use clojure-lsp it probably went unnoticed.
Indeed! Thank you