-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
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
find symbol gets confused after rename file or dir #91
Comments
Didn't you fix this the other day by rebuilding the ast in more places? |
good question. will retest |
still can reproduce |
this seems to be the core of the problem: after renaming (ns-resolve (find-ns 'energy-pricing.dependent) 'greet)
;;=> #'energy-pricing.greeter/greet it should return: ;;=> #'energy-pricing.newgreeter/greet |
It's temping to call |
fixed via 9bc3914 |
if in namespace A i define a symbol and refer and use it in namespace B find usages returns 2 occurrences one for the definition of the symbol and one for the usage. If i rename namespace A (or the directory it lives in) find usages only returns one of the occurrences depending on where you call it from: only returns the definition of the symbol if called from renamed namespace A and only returns the usage if you call it from namespace B
The text was updated successfully, but these errors were encountered: