This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-05-13
Channels
- # aleph (6)
- # announcements (10)
- # asami (3)
- # babashka (111)
- # babashka-sci-dev (20)
- # beginners (28)
- # calva (28)
- # clj-http (2)
- # clj-kondo (23)
- # cljs-dev (16)
- # cljsrn (23)
- # clojure (116)
- # clojure-czech (3)
- # clojure-europe (33)
- # clojure-nl (1)
- # clojure-norway (7)
- # clojure-uk (5)
- # clojurescript (41)
- # community-development (2)
- # cursive (5)
- # datahike (4)
- # datomic (13)
- # figwheel-main (3)
- # fulcro (11)
- # google-cloud (1)
- # gratitude (8)
- # hyperfiddle (14)
- # jobs (2)
- # lsp (22)
- # malli (4)
- # off-topic (4)
- # other-languages (4)
- # pathom (13)
- # portal (40)
- # rdf (11)
- # reitit (1)
- # sci (15)
- # shadow-cljs (7)
- # specter (1)
- # sql (6)
- # xtdb (4)
After I use load-file
I do not see any autocompletion for the loaded namespace in the REPL. Like I load-file
(ns rules)
(def cursive "is great")
and there is no autocomplete for rules/cursive
afterward. Is this something you might consider adding?Perhaps it has to do with my project code or setup then.
@U0232JK38BZ u should have a module defined for your clojure project as either a Clojure / Leiningen or Clojure / Deps type.
you should check out the Cursive User Guide on the topic:
https://cursive-ide.com/userguide/first-repl.html
also the next, BUILD TOOLS
section is useful to really understand what's all this extra complexity is about.
eg, the section about using deps.edn
file based Clojure projects is what you want to learn probably:
https://cursive-ide.com/userguide/deps.html
Thanks, I'll look into it. Perhaps part of the problem is that my file is not on the classpath. I evaluate the ns myself with load-file.