You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be really helpful to be able to ctrl+click on variables to move the cursor to their declaration. It's a feature in many IDEs which greatly increases productivity, and it would be very useful to be able to do this in large GLSL programs.
Steps to recreate
Create a glsl file with the following code:
#version430void main() {
vec3 foo =vec3(1);
vec3 bar = foo *2; // here
}
Ctrl+click on foo
Current behavior
foo is selected
Expected behavior
The cursor jumps to the declaration of foo.
The text was updated successfully, but these errors were encountered:
Thanks for the feedback! I'm busy till mid of February. So this will take some time... Feel free to make a pull request if you did it yourself in the meantime. Cheers, Daniel
Installed product versions
Description
It would be really helpful to be able to ctrl+click on variables to move the cursor to their declaration. It's a feature in many IDEs which greatly increases productivity, and it would be very useful to be able to do this in large GLSL programs.
Steps to recreate
foo
Current behavior
foo
is selectedExpected behavior
The cursor jumps to the declaration of
foo
.The text was updated successfully, but these errors were encountered: