Fork me on GitHub
#spacemacs
<
2020-07-03
>
Drew Verlee14:07:43

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.

practicalli-johnny17:07:41

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.

Drew Verlee15:07:57

M-/ does work. Thats great thanks