diff options
| author | Malo <57839069+MDLC01@users.noreply.github.com> | 2025-06-26 09:24:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-26 08:24:21 +0000 |
| commit | 04fd0acacab8cf2e82268da9c18ef4bcf37507dc (patch) | |
| tree | d01aa881ebdab6f3925af65c18d71b1103836c90 /crates/typst-ide/src | |
| parent | 6a1d6c08e2d6e4c184c6d177e67796b23ccbe4c7 (diff) | |
Allow deprecating symbol variants (#6441)
Diffstat (limited to 'crates/typst-ide/src')
| -rw-r--r-- | crates/typst-ide/src/complete.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-ide/src/complete.rs b/crates/typst-ide/src/complete.rs index 53642331..bc5b3e10 100644 --- a/crates/typst-ide/src/complete.rs +++ b/crates/typst-ide/src/complete.rs @@ -448,7 +448,7 @@ fn field_access_completions( match value { Value::Symbol(symbol) => { for modifier in symbol.modifiers() { - if let Ok(modified) = symbol.clone().modified(modifier) { + if let Ok(modified) = symbol.clone().modified((), modifier) { ctx.completions.push(Completion { kind: CompletionKind::Symbol(modified.get()), label: modifier.into(), |
