diff options
| author | Github Actions <actions@github> | 2020-04-27 02:30:11 +0000 |
|---|---|---|
| committer | Github Actions <actions@github> | 2020-04-27 02:30:11 +0000 |
| commit | 33bd166c7e23e4ff68668635fa33f6b4846fd5a4 (patch) | |
| tree | 4f650932d6206aa08939ffe970fd526386755143 | |
| parent | metals.lua: add ability to reuse cs if already installed #209 (diff) | |
| download | nvim-lspconfig-33bd166c7e23e4ff68668635fa33f6b4846fd5a4.tar nvim-lspconfig-33bd166c7e23e4ff68668635fa33f6b4846fd5a4.tar.gz nvim-lspconfig-33bd166c7e23e4ff68668635fa33f6b4846fd5a4.tar.bz2 nvim-lspconfig-33bd166c7e23e4ff68668635fa33f6b4846fd5a4.tar.lz nvim-lspconfig-33bd166c7e23e4ff68668635fa33f6b4846fd5a4.tar.xz nvim-lspconfig-33bd166c7e23e4ff68668635fa33f6b4846fd5a4.tar.zst nvim-lspconfig-33bd166c7e23e4ff68668635fa33f6b4846fd5a4.zip | |
[docgen] Update README.md
skip-checks: true
| -rw-r--r-- | README.md | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -2456,7 +2456,7 @@ require'nvim_lsp'.metals.setup{} Default Values: cmd = { "metals" } filetypes = { "scala" } - root_dir = util.root_pattern("build.sbt") + root_dir = util.root_pattern("build.sbt", "build.sc", "build.gradle", "pom.xml") ``` ## nimls @@ -3163,6 +3163,12 @@ cmd = {"rustup", "run", "nightly", "rls"} This server accepts configuration via the `settings` key. <details><summary>Available settings:</summary> +- **`rust-client.autoStartRls`**: `boolean` + + Default: `true` + + Start RLS automatically when opening a file or project. + - **`rust-client.channel`** Default: `"default"` |
