diff options
| author | Github Actions <actions@github> | 2021-01-07 06:02:19 +0000 |
|---|---|---|
| committer | Github Actions <actions@github> | 2021-01-07 06:02:19 +0000 |
| commit | c1bc51f9272f8da8e6cf1a09510b775e2cf8a2ff (patch) | |
| tree | 7e9e39b71299950c55b2ce2b15b98149a5c3c950 | |
| parent | vscode-html-languageserver: document reason completion is not on by default (diff) | |
| download | nvim-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.md | 27 |
1 files changed, 26 insertions, 1 deletions
@@ -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` |
