aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGithub Actions <actions@github>2021-03-07 10:00:53 +0000
committerGithub Actions <actions@github>2021-03-07 10:00:53 +0000
commit861a752e7ec2abab46fbb20a32274f06962014fb (patch)
tree478d73c3e653b9b04a18b22cdaf8c4f1253f30c7
parentMerge pull request #765 from kitagry/fix-deno-scheme (diff)
downloadnvim-lspconfig-861a752e7ec2abab46fbb20a32274f06962014fb.tar
nvim-lspconfig-861a752e7ec2abab46fbb20a32274f06962014fb.tar.gz
nvim-lspconfig-861a752e7ec2abab46fbb20a32274f06962014fb.tar.bz2
nvim-lspconfig-861a752e7ec2abab46fbb20a32274f06962014fb.tar.lz
nvim-lspconfig-861a752e7ec2abab46fbb20a32274f06962014fb.tar.xz
nvim-lspconfig-861a752e7ec2abab46fbb20a32274f06962014fb.tar.zst
nvim-lspconfig-861a752e7ec2abab46fbb20a32274f06962014fb.zip
[docgen] Update CONFIG.md
skip-checks: true
-rw-r--r--CONFIG.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/CONFIG.md b/CONFIG.md
index 8ed0c3c6..8860d41c 100644
--- a/CONFIG.md
+++ b/CONFIG.md
@@ -1015,12 +1015,15 @@ require'lspconfig'.denols.setup{}
Commands:
- DenolsCache: Cache a module and all of its dependencies.
+ - DenolsDefinition: Jump to definition. This handle deno:/ schema in deno:// buffer.
+ - DenolsReferences: List references. This handle deno:/ schema in deno:// buffer.
Default Values:
cmd = { "deno", "lsp" }
filetypes = { "javascript", "javascriptreact", "javascript.jsx", "typescript", "typescriptreact", "typescript.tsx" }
handlers = {
- ["textDocument/definition"] = <function 1>
+ ["textDocument/definition"] = <function 1>,
+ ["textDocument/references"] = <function 1>
}
init_options = {
enable = true,
@@ -3675,6 +3678,12 @@ See [docs](https://github.com/rust-analyzer/rust-analyzer/tree/master/docs/user#
This server accepts configuration via the `settings` key.
<details><summary>Available settings:</summary>
+- **`rust-analyzer.assist.importGroup`**: `boolean`
+
+ Default: `true`
+
+ null
+
- **`rust-analyzer.assist.importMergeBehavior`**: `enum { "none", "full", "last" }`
Default: `"full"`