mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
66e6abf903
While here also set NO_BUILD and tweak the clj_completions.clj script. I'm taking the maintainership of the port too. ok solene@
8 lines
211 B
Clojure
8 lines
211 B
Clojure
(def completions
|
|
(mapcat (comp keys ns-publics) (all-ns)))
|
|
|
|
(with-open [f (java.io.FileWriter. "files/clj_completions")]
|
|
(binding [*out* f]
|
|
(doseq [c (-> completions sort distinct)]
|
|
(println c))))
|