summaryrefslogtreecommitdiff
path: root/crates/typst-ide/src
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2025-01-30 14:36:15 +0100
committerGitHub <noreply@github.com>2025-01-30 13:36:15 +0000
commitbe1fa91a00a9bff6c5eb9744266f252b8cc23fe4 (patch)
tree398667e7da4e44d910dbf69f4d6b6d18f9141e0c /crates/typst-ide/src
parent7a0d7092bc00ee4f5c0d4887ea3ccf3fbceb2426 (diff)
Modular, multi-threaded, transitioning plugins (#5779)
Diffstat (limited to 'crates/typst-ide/src')
-rw-r--r--crates/typst-ide/src/complete.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/crates/typst-ide/src/complete.rs b/crates/typst-ide/src/complete.rs
index 0f8abddb..24b76537 100644
--- a/crates/typst-ide/src/complete.rs
+++ b/crates/typst-ide/src/complete.rs
@@ -452,16 +452,6 @@ fn field_access_completions(
}
}
}
- Value::Plugin(plugin) => {
- for name in plugin.iter() {
- ctx.completions.push(Completion {
- kind: CompletionKind::Func,
- label: name.clone(),
- apply: None,
- detail: None,
- })
- }
- }
_ => {}
}
}