-
Notifications
You must be signed in to change notification settings - Fork 313
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
Support tab-completion for targets in external workspaces #505
Comments
Are there any plans to add this? Quite a usability downgrade when using bazelbuild/rules_jvm_external (compared to bazel-deps). |
I'll take a look at this. |
@jin Great, thanks! |
Has any progress been made on this one? We also heavily use |
@sgowroji this is another low hanging bug that impacts most Java/Android teams. Could you help triage this one as well? |
Thank you for contributing to the IntelliJ repository! This issue has been marked as stale since it has not had any activity in the last 6 months. It will be closed in the next 14 days unless any other activity occurs or one of the following labels is added: "not stale", "awaiting-maintainer". Please reach out to the triage team ( |
This issue has been automatically closed due to inactivity. If you're still interested in pursuing this, please reach out to the triage team ( |
Not being able to auto complete external dependencies is still an issue that exists in the Intellij plugin. Would be great to see a fix for this. |
Thank you for contributing to the IntelliJ repository! This issue has been marked as stale since it has not had any activity in the last 6 months. It will be closed in the next 14 days unless any other activity occurs. If you think this issue is still relevant and should stay open, please post any comment here and the issue will no longer be marked as stale. |
Probably will be fixed in #6664 |
Yea. Working on adding this :) @tpasternak is it possible that I get assigned to this ? |
Sure! I can even mark as P1! |
Also add a CharFilter impl that allows `@` to filter the lookup elements and not hide the lookup Other issues: bazelbuild#505
Also add a CharFilter that enable: * '@' to filter the lookup elements and not hide the lookup. * '/' to autocomplete selected item Other issues: bazelbuild#505
Also add a CharFilter that enable: * '@' to filter the lookup elements and not hide the lookup. * '/' to autocomplete selected item Other issues: bazelbuild#505
Also add a CharFilter that enable: * '@' to filter the lookup elements and not hide the lookup. * '/' to autocomplete selected item Other issues: bazelbuild#505
While click-through navigation now works for generated and downloaded workspaces, I'm not seeing syntax completion on targets not in
//
e.g. using github.com/square/bazel_maven_repository, one can set up a generated workspace representing maven artifacts, and use a dependency like
@maven//com/google/guava:guava
. As of today, from a head-build, at least, I can click-through that target and end up in my generated BUILD.bazel file. All well and good.But, when wanting to use it, I can't type
@maven//com/google/gu
and then hit tab, and have it offer me suggestions as it will for//blah/foo/ba
+tab.The text was updated successfully, but these errors were encountered: