We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
resolve-missing should not suggest e.g. Object since it's already imported by default.
resolve-missing
Object
This is best accomplished by inspecting (ns-interns my-ns).
(ns-interns my-ns)
Note that refactor-nrepl.ns.resolve-missing/resolve-missing does not currently accept a ns param (should be optional)
refactor-nrepl.ns.resolve-missing/resolve-missing
ns
Probably, it's better to add an :already-interned true k-v than to remove the item altogether. That way, we can offer a better UX in clj-refactor.
:already-interned true
The text was updated successfully, but these errors were encountered:
Strengthen/refine resolve-missing (#403)
b4512c6
Fixes #401 Fixes #402
Successfully merging a pull request may close this issue.
resolve-missing
should not suggest e.g.Object
since it's already imported by default.This is best accomplished by inspecting
(ns-interns my-ns)
.Note that
refactor-nrepl.ns.resolve-missing/resolve-missing
does not currently accept ans
param (should be optional)Probably, it's better to add an
:already-interned true
k-v than to remove the item altogether. That way, we can offer a better UX in clj-refactor.The text was updated successfully, but these errors were encountered: