Integrate pyright language server

This commit is contained in:
Max Brunsfeld 2022-06-22 16:58:19 -07:00
parent c0dbd8f9b9
commit 11f73bfa4e
3 changed files with 104 additions and 3 deletions

View file

@ -7,6 +7,7 @@ mod c;
mod go;
mod installation;
mod json;
mod python;
mod rust;
mod typescript;
@ -46,7 +47,7 @@ pub fn build_language_registry(login_shell_env_loaded: Task<()>) -> LanguageRegi
(
"python",
tree_sitter_python::language(),
None, //
Some(Arc::new(python::PythonLspAdapter)),
),
(
"rust",