nolanderc / glsl_analyzer

Language server for GLSL (autocomplete, goto-definition, formatter, and more)
GNU General Public License v3.0
171 stars 4 forks source link

Implement goto-definition for fields #12

Closed nolanderc closed 10 months ago

nolanderc commented 10 months ago
struct Foo {
    int abc;
} foo;

void main() {
    foo.abc;
}

With the cursor on abc in main, we should get hover info and goto-definition should move into the struct.