-
-
Notifications
You must be signed in to change notification settings - Fork 909
Open
Labels
help wantedContributions encouragedContributions encouraged
Description
Steps to reproduce
In VSCode, Ctrl+Click (go to definition) works for custom types but not for type aliases.
Code:
pub type MyCustomType {
Variant1
Variant2
}
pub type MyTypeAlias =
#(Int, String, MyCustomType)
pub fn main() {
let _a: MyCustomType = Variant1
let _b: MyTypeAlias = #(1, "Test", Variant2)
}Expected: Ctrl+Click on MyTypeAlias in main() should jump to the type definition.
Actual: Nothing happens when clicking MyTypeAlias, but clicking MyCustomType works fine.
Environment
- Gleam: 1.13.0 and 1.14.0
- Editor: VSCode
- OS: Windows 11
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
help wantedContributions encouragedContributions encouraged