Does anyone know if there’s a refactoring (clj-refactor o lsp) function that would modify referred vars so that they become namespaced,. For example if I have:
[clojure.set :as set :refer [intersection]]
Then calls to intersection will become set/intersection.interesting, that sounds like a LSP code action refer -> as and as -> refer , I don't think there is any refactoring in any tool supporting that, but clojure-lsp seems to be the best place for it, feel free to open a issue there!
Cool, will do.