diff options
| author | github-actions <github-actions@github.com> | 2021-12-14 09:49:13 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2021-12-14 09:49:13 +0000 |
| commit | 885edee6fe09e387348859a0ecb67873297d0432 (patch) | |
| tree | 1a879ef3ec692215009814a33285923cd2df4843 /doc | |
| parent | fix(erlang_ls): use correct cmd on non-windows systems (diff) | |
| download | nvim-lspconfig-885edee6fe09e387348859a0ecb67873297d0432.tar nvim-lspconfig-885edee6fe09e387348859a0ecb67873297d0432.tar.gz nvim-lspconfig-885edee6fe09e387348859a0ecb67873297d0432.tar.bz2 nvim-lspconfig-885edee6fe09e387348859a0ecb67873297d0432.tar.lz nvim-lspconfig-885edee6fe09e387348859a0ecb67873297d0432.tar.xz nvim-lspconfig-885edee6fe09e387348859a0ecb67873297d0432.tar.zst nvim-lspconfig-885edee6fe09e387348859a0ecb67873297d0432.zip | |
docs: update server_configurations.md
skip-checks: true
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/server_configurations.md | 14 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 14 |
2 files changed, 26 insertions, 2 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 1351dfbb..37b1c9e8 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -1023,6 +1023,14 @@ require'lspconfig'.elixirls.setup{ This server accepts configuration via the `settings` key. <details><summary>Available settings:</summary> +- **`elixirLS.additionalWatchedExtensions`**: `array` + + Default: `{}` + + Array items: `{type = "string"}` + + Additional file types capable of triggering a build on change + - **`elixirLS.dialyzerEnabled`**: `boolean` Default: `true` @@ -1047,6 +1055,10 @@ This server accepts configuration via the `settings` key. Show code lenses to run tests in terminal +- **`elixirLS.envVariables`**: `object` + + Environment variables to use for compilation + - **`elixirLS.fetchDeps`**: `boolean` Automatically fetch project dependencies when compiling @@ -1274,7 +1286,7 @@ require'lspconfig'.erlangls.setup{} Commands: Default Values: - cmd = "erlang_ls" + cmd = { "erlang_ls" } filetypes = { "erlang" } root_dir = root_pattern('rebar.config', 'erlang.mk', '.git') single_file_support = true diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 1351dfbb..37b1c9e8 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -1023,6 +1023,14 @@ require'lspconfig'.elixirls.setup{ This server accepts configuration via the `settings` key. <details><summary>Available settings:</summary> +- **`elixirLS.additionalWatchedExtensions`**: `array` + + Default: `{}` + + Array items: `{type = "string"}` + + Additional file types capable of triggering a build on change + - **`elixirLS.dialyzerEnabled`**: `boolean` Default: `true` @@ -1047,6 +1055,10 @@ This server accepts configuration via the `settings` key. Show code lenses to run tests in terminal +- **`elixirLS.envVariables`**: `object` + + Environment variables to use for compilation + - **`elixirLS.fetchDeps`**: `boolean` Automatically fetch project dependencies when compiling @@ -1274,7 +1286,7 @@ require'lspconfig'.erlangls.setup{} Commands: Default Values: - cmd = "erlang_ls" + cmd = { "erlang_ls" } filetypes = { "erlang" } root_dir = root_pattern('rebar.config', 'erlang.mk', '.git') single_file_support = true |
