-
Notifications
You must be signed in to change notification settings - Fork 38
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
Prefixes for namespaces in namespaced keywords don't have completion candidates #37
Comments
Do you mean there is no completion here |
This might be related to #37.
I've updated the OP slightly, I realize it was a bit unclear and I'm sorry about that. I filed it quicky while hacking on something else :p Here's a more concrete example: core.clj: (ns test.core)
(def my-keywords #{::foo ::bar ::baz}) other.clj: (ns test.other
(:require [test.core :as my-ns-alias]))
(println ::my-ns-a|) At the |
I see. Yes, I don't support that yet. Perhaps, keywords need the same treatment as vars in this regard. I will try to abstract some code away and implement this. |
@expez Could you please take a look at the commit and say if it is what you wanted? |
Yes, this looks like what I wanted 👍 |
I guess this should be resolved now :). |
If I do
::my-ns-alias/
then keywords inmy-ns-alias
are listed correctly, but the there's no completion suggestion while I'm typing::my-ns-alias
The text was updated successfully, but these errors were encountered: