diff options
| author | github-actions <github-actions@github.com> | 2021-12-26 21:10:38 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2021-12-26 21:10:38 +0000 |
| commit | dc4ea505cabcdec93b3c60dd85cb1ad57477dc92 (patch) | |
| tree | 64f03a36fe284c342135ff2d0940adb7f7f1bcb8 | |
| parent | fix(denols): add package_json (#1611) (diff) | |
| download | nvim-lspconfig-dc4ea505cabcdec93b3c60dd85cb1ad57477dc92.tar nvim-lspconfig-dc4ea505cabcdec93b3c60dd85cb1ad57477dc92.tar.gz nvim-lspconfig-dc4ea505cabcdec93b3c60dd85cb1ad57477dc92.tar.bz2 nvim-lspconfig-dc4ea505cabcdec93b3c60dd85cb1ad57477dc92.tar.lz nvim-lspconfig-dc4ea505cabcdec93b3c60dd85cb1ad57477dc92.tar.xz nvim-lspconfig-dc4ea505cabcdec93b3c60dd85cb1ad57477dc92.tar.zst nvim-lspconfig-dc4ea505cabcdec93b3c60dd85cb1ad57477dc92.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 104 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 104 |
2 files changed, 208 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index a62f59e3..1ea1e218 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -843,6 +843,110 @@ vim.g.markdown_fenced_languages = { ``` +This server accepts configuration via the `settings` key. +<details><summary>Available settings:</summary> + +- **`deno.cache`**: `string` + + Default: `vim.NIL` + + null + +- **`deno.codeLens.implementations`**: `boolean` + + null + +- **`deno.codeLens.references`**: `boolean` + + null + +- **`deno.codeLens.referencesAllFunctions`**: `boolean` + + null + +- **`deno.codeLens.test`**: `boolean` + + Default: `true` + + null + +- **`deno.codeLens.testArgs`**: `array` + + Default: `{ "--allow-all" }` + + Array items: `{type = "string"}` + + null + +- **`deno.config`**: `string` + + Default: `vim.NIL` + + null + +- **`deno.enable`**: `boolean` + + null + +- **`deno.importMap`**: `string` + + Default: `vim.NIL` + + null + +- **`deno.internalDebug`**: `boolean` + + null + +- **`deno.lint`**: `boolean` + + null + +- **`deno.path`**: `string` + + Default: `vim.NIL` + + null + +- **`deno.suggest.autoImports`**: `boolean` + + Default: `true` + + null + +- **`deno.suggest.completeFunctionCalls`**: `boolean` + + null + +- **`deno.suggest.imports.autoDiscover`**: `boolean` + + Default: `true` + + null + +- **`deno.suggest.imports.hosts`**: `object` + + Default: `{["https://cdn.nest.land"] = true,["https://crux.land"] = true,["https://deno.land"] = true}` + + null + +- **`deno.suggest.names`**: `boolean` + + Default: `true` + + null + +- **`deno.suggest.paths`**: `boolean` + + Default: `true` + + null + +- **`deno.unstable`**: `boolean` + + null + +</details> **Snippet to enable the language server:** diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index a62f59e3..1ea1e218 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -843,6 +843,110 @@ vim.g.markdown_fenced_languages = { ``` +This server accepts configuration via the `settings` key. +<details><summary>Available settings:</summary> + +- **`deno.cache`**: `string` + + Default: `vim.NIL` + + null + +- **`deno.codeLens.implementations`**: `boolean` + + null + +- **`deno.codeLens.references`**: `boolean` + + null + +- **`deno.codeLens.referencesAllFunctions`**: `boolean` + + null + +- **`deno.codeLens.test`**: `boolean` + + Default: `true` + + null + +- **`deno.codeLens.testArgs`**: `array` + + Default: `{ "--allow-all" }` + + Array items: `{type = "string"}` + + null + +- **`deno.config`**: `string` + + Default: `vim.NIL` + + null + +- **`deno.enable`**: `boolean` + + null + +- **`deno.importMap`**: `string` + + Default: `vim.NIL` + + null + +- **`deno.internalDebug`**: `boolean` + + null + +- **`deno.lint`**: `boolean` + + null + +- **`deno.path`**: `string` + + Default: `vim.NIL` + + null + +- **`deno.suggest.autoImports`**: `boolean` + + Default: `true` + + null + +- **`deno.suggest.completeFunctionCalls`**: `boolean` + + null + +- **`deno.suggest.imports.autoDiscover`**: `boolean` + + Default: `true` + + null + +- **`deno.suggest.imports.hosts`**: `object` + + Default: `{["https://cdn.nest.land"] = true,["https://crux.land"] = true,["https://deno.land"] = true}` + + null + +- **`deno.suggest.names`**: `boolean` + + Default: `true` + + null + +- **`deno.suggest.paths`**: `boolean` + + Default: `true` + + null + +- **`deno.unstable`**: `boolean` + + null + +</details> **Snippet to enable the language server:** |
