aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorBen Frain <bf@benfrain.com>2021-06-13 22:42:34 +0100
committerGitHub <noreply@github.com>2021-06-13 14:42:34 -0700
commitbb99fe6308f6c97e5c7418737f604e2331167215 (patch)
tree77dfa1d87942c5499c07fc5421f5ec9ee8db8a2f /lua
parent[docgen] Update CONFIG.md (diff)
downloadnvim-lspconfig-bb99fe6308f6c97e5c7418737f604e2331167215.tar
nvim-lspconfig-bb99fe6308f6c97e5c7418737f604e2331167215.tar.gz
nvim-lspconfig-bb99fe6308f6c97e5c7418737f604e2331167215.tar.bz2
nvim-lspconfig-bb99fe6308f6c97e5c7418737f604e2331167215.tar.lz
nvim-lspconfig-bb99fe6308f6c97e5c7418737f604e2331167215.tar.xz
nvim-lspconfig-bb99fe6308f6c97e5c7418737f604e2331167215.tar.zst
nvim-lspconfig-bb99fe6308f6c97e5c7418737f604e2331167215.zip
docs(htmlls): update installation instructions
Updating for more recent language server versions
Diffstat (limited to 'lua')
-rw-r--r--lua/lspconfig/html.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/lspconfig/html.lua b/lua/lspconfig/html.lua
index 0cb5c80d..e69b8a2a 100644
--- a/lua/lspconfig/html.lua
+++ b/lua/lspconfig/html.lua
@@ -2,7 +2,7 @@ local configs = require 'lspconfig/configs'
local util = require 'lspconfig/util'
local server_name = "html"
-local bin_name = "html-languageserver"
+local bin_name = "vscode-html-language-server"
local root_pattern = util.root_pattern("package.json")
@@ -22,14 +22,14 @@ configs[server_name] = {
};
docs = {
description = [[
-https://github.com/vscode-langservers/vscode-html-languageserver-bin
+https://github.com/hrsh7th/vscode-langservers-extracted
-`vscode-html-languageserver` can be installed via `npm`:
+`vscode-html-language-server` can be installed via `npm`:
```sh
-npm install -g vscode-html-languageserver-bin
+npm i -g vscode-langservers-extracted
```
-Neovim does not currently include built-in snippets. `vscode-html-languageserver` only provides completions when snippet support is enabled.
+Neovim does not currently include built-in snippets. `vscode-html-language-server` 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