diff options
author | Blaž Hrastnik | 2021-01-21 07:55:46 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-01-21 07:55:46 +0000 |
commit | 05c7fb98df43f7843d441e0dce3e5b361f2d7645 (patch) | |
tree | fef6ec32ba050d59538fa2d6ee8a7a64a36c4610 /helix-lsp/src | |
parent | 15dd7ca6d863735db164456f78980a71fc8501a3 (diff) |
Refactoring: move language_servers into Editor, proper load for doc.
Diffstat (limited to 'helix-lsp/src')
-rw-r--r-- | helix-lsp/src/lib.rs | 2 |
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, |