I’m trying to figure out how to search for all instances of a specific namespaced keyword in a Clojure codebase. Does anyone know of a tool that can help accomplish this?
The main complication is that destructuring has a few different ways of representing a namespaced keyword. Then there are also namespaced maps.
I believe that macroexpansion will have to take place and then search through the expanded code, however this likely means that it won’t be possible to find the exact location of the namespaced keyword, but just having the function where it is used would be ok.
I was just wondering whether there is an existing tool that can help with this.