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
As part of #496 and hashicorp/hcl-lang#185 in particular, it was decided to treat any reference as immutable sequence of segments separated by dots.
For example, you will get the following data regardless of where exactly you hover over google_compute_instance.name.network_interface[0].network_ip:
google_compute_instance.name.network_interface[0].network_ip
Meaning that we always represent the whole address, or rather its very last segment.
We could provide different hover data for different segments, for example:
google_compute_instance.name
google_compute_instance.name.network_interface
google_compute_instance.name.network_interface[0]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Context
As part of #496 and hashicorp/hcl-lang#185 in particular, it was decided to treat any reference as immutable sequence of segments separated by dots.
For example, you will get the following data regardless of where exactly you hover over
google_compute_instance.name.network_interface[0].network_ip
:Meaning that we always represent the whole address, or rather its very last segment.
Proposal
We could provide different hover data for different segments, for example:
google_compute_instance.name
- objectgoogle_compute_instance.name.network_interface
- list of objectgoogle_compute_instance.name.network_interface[0]
- objectgoogle_compute_instance.name.network_interface[0].network_ip
- string (as before)The text was updated successfully, but these errors were encountered: