Question: Purpose of unused language servers in languages.toml
#14561
-
|
For example, it contains the [language-server]
pyright = { command = "pyright-langserver", args = ["--stdio"], config = {} }
basedpyright = { command = "basedpyright-langserver", args = ["--stdio"], config = {} }What's the purpose of this? Does it allow me to add the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
This is just to make it easier to add these servers to your local configuration if you want to use them. For example you can use # ~/.config/helix/languages.toml
[[language]]
name = "python"
language-servers = ["pyright"]To use Pyright without having to also specify the entry in |
Beta Was this translation helpful? Give feedback.
This is just to make it easier to add these servers to your local configuration if you want to use them. For example you can use
To use Pyright without having to also specify the entry in
[language-server]in your config.