aboutsummaryrefslogtreecommitdiff
path: root/helix-lsp
diff options
context:
space:
mode:
Diffstat (limited to 'helix-lsp')
-rw-r--r--helix-lsp/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-lsp/src/lib.rs b/helix-lsp/src/lib.rs
index 23c42712..b0c84ff5 100644
--- a/helix-lsp/src/lib.rs
+++ b/helix-lsp/src/lib.rs
@@ -114,7 +114,7 @@ impl Registry {
pub fn new() -> Self {
let mut inner = HashMap::new();
- inner.insert("rust".to_string(), OnceCell::new());
+ inner.insert("source.rust".to_string(), OnceCell::new());
Self {
inner,