List all unique keywords in current project?

There is a weak cache of keywords you can use to load all (?) keywords:

(let [f (.getDeclaredField clojure.lang.Keyword "table")]
  (.setAccessible f true)
  (map #(.get %) (vals (.get f nil))))
3 Likes