This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-07-03
Channels
- # announcements (1)
- # babashka (22)
- # beginners (176)
- # calva (10)
- # cider (4)
- # circleci (5)
- # cljsrn (20)
- # clojure (28)
- # clojure-europe (11)
- # clojure-italy (5)
- # clojure-nl (5)
- # clojure-spec (1)
- # clojure-sweden (2)
- # clojure-uk (29)
- # clojuredesign-podcast (4)
- # clojurescript (38)
- # code-reviews (25)
- # conjure (1)
- # core-typed (1)
- # data-science (16)
- # datomic (23)
- # figwheel-main (16)
- # fulcro (48)
- # helix (9)
- # jobs (3)
- # juxt (5)
- # kaocha (17)
- # malli (19)
- # mount (9)
- # nrepl (4)
- # off-topic (35)
- # pathom (7)
- # re-frame (28)
- # reagent (26)
- # reitit (1)
- # releases (1)
- # remote-jobs (5)
- # sci (6)
- # shadow-cljs (36)
- # spacemacs (3)
- # sql (8)
- # tools-deps (13)
- # unrepl (1)
- # vim (4)
- # xtdb (8)
Does anyone get filepath completion in clojure mode for things no the classpath? i want to be able to have auto discover and complete in these situations
(-> "resources" io/file .isDirectory)
;; => true
(utils/load-edn "resources/*")
where my cursor is on the * it should show me the files in resources when i hit tab.Does M-/
work, instead of TAB ?? That might only use paths already used (and stored in Spacemacs cache some where, but just guessing)
I've noticed file popups before when using http://clojure.java.io/resource in some of the data science projects, but wasnt paying enough attention, sorry.
M-/ does work. Thats great thanks