-
-
Notifications
You must be signed in to change notification settings - Fork 645
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
Add cider-find-ns #1061
Comments
If memory serves there's no mapping between namespaces and source files. How would you propose to tackle this? Maybe just use the info from a random var in the ns? |
|
PR welcome, then! :-) |
Anyone working on this? |
Guess I'm not most likely candidate and I haven't gotten to it yet |
@expez When/if you get to this, maybe the ns-list op could use tools.namespace as well ?! |
Does the ns-list returns only the list of namespaces, or their content as well? |
@alexander-yakushev what we need to implement this is a map of |
Yeah, this will probably be easy. The problem is that we'll also need to check if a namespace is loaded or not when we use this in places like the namespace browser. This shouldn't be hard, but still - it's a work we have to do. |
Provide a completing read of available namespaces and jump to the file containing its definition.
Provide a completing read of available namespaces and jump to the file containing its definition.
Provide a completing read of available namespaces and jump to the file containing its definition.
Provide a completing read of available namespaces and jump to the file containing its definition.
Here are some very common situations for me:
lib
and I want to check before I write it myselfI'm solving these now by using
cider-classpath
,C-s
down to thelib
, open the jar, look at the list of files and then picking something that looks promising.cider-find-ns
would give a completing read of all the available namespaces available on classpath, not just in my own project, and jumps to the selected ns.The text was updated successfully, but these errors were encountered: