gleam-lang/gleam
Auf GitHub ansehenLSP: Support triggering find references from imports
Open
#5.544 geöffnet am 31. März 2026
help wanted
Repository-Metriken
- Stars
- (21.417 Stars)
- PR-Merge-Metriken
- (Durchschn. Merge 8T 6h) (59 gemergte PRs in 30 T)
Beschreibung
In the following example, triggering find references on any of the underlined locations should show all of the uses of the type Foo. It currently works everywhere but in the import line.
// -- foo.gleam
pub type Foo
// ^^^
// -- app.gleam
import foo.{type Foo}
// ^^^ ← this line shows up in all results, but triggering here fails
fn main() {
let _: Foo = todo
// ^^^
}