aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGithub Actions <actions@github>2021-01-07 06:02:19 +0000
committerGithub Actions <actions@github>2021-01-07 06:02:19 +0000
commitc1bc51f9272f8da8e6cf1a09510b775e2cf8a2ff (patch)
tree7e9e39b71299950c55b2ce2b15b98149a5c3c950
parentvscode-html-languageserver: document reason completion is not on by default (diff)
downloadnvim-lspconfig-c1bc51f9272f8da8e6cf1a09510b775e2cf8a2ff.tar
nvim-lspconfig-c1bc51f9272f8da8e6cf1a09510b775e2cf8a2ff.tar.gz
nvim-lspconfig-c1bc51f9272f8da8e6cf1a09510b775e2cf8a2ff.tar.bz2
nvim-lspconfig-c1bc51f9272f8da8e6cf1a09510b775e2cf8a2ff.tar.lz
nvim-lspconfig-c1bc51f9272f8da8e6cf1a09510b775e2cf8a2ff.tar.xz
nvim-lspconfig-c1bc51f9272f8da8e6cf1a09510b775e2cf8a2ff.tar.zst
nvim-lspconfig-c1bc51f9272f8da8e6cf1a09510b775e2cf8a2ff.zip
[docgen] Update README.md
skip-checks: true
-rw-r--r--CONFIG.md27
1 files changed, 26 insertions, 1 deletions
diff --git a/CONFIG.md b/CONFIG.md
index a43f4ffd..3c2ddb5c 100644
--- a/CONFIG.md
+++ b/CONFIG.md
@@ -1647,11 +1647,24 @@ require'lspconfig'.hls.setup{}
https://github.com/vscode-langservers/vscode-html-languageserver-bin
-`html-languageserver` can be installed via `npm`:
+`vscode-html-languageserver` can be installed via `npm`:
```sh
npm install -g vscode-html-languageserver-bin
```
+Neovim does not currently include built-in snippets. `vscode-html-languageserver` only provides completions when snippet support is enabled.
+To enable completion, install a snippet plugin and add the following override to your language client capabilities during setup.
+
+```lua
+--Enable (broadcasting) snippet capability for completion
+local capabilities = vim.lsp.protocol.make_client_capabilities()
+capabilities.textDocument.completion.completionItem.snippetSupport = true
+
+require'lspconfig'.html.setup {
+ capabilities = capabilities,
+}
+```
+
```lua
require'lspconfig'.html.setup{}
@@ -1872,6 +1885,12 @@ This server accepts configuration via the `settings` key.
Print executed code in REPL and append it to the REPL history\.
+- **`julia.execution.inlineResults.colors`**: `object`
+
+ Default: `vim.empty_dict()`
+
+ null
+
- **`julia.execution.resultType`**: `enum { "REPL", "inline", "both" }`
Default: `"REPL"`
@@ -4024,6 +4043,12 @@ This server accepts configuration via the `settings` key.
null
+- **`rust-analyzer.procMacro.server`**: `null|string`
+
+ Default: `vim.NIL`
+
+ null
+
- **`rust-analyzer.runnableEnv`**
Default: `vim.NIL`