aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-11-20 22:57:56 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-11-20 22:57:56 +0000
commite0fae251f8459940331960106d4bd9457cec23de (patch)
tree2b075b5fd0135830a0419b563361eea558431a0d /doc
parentfix(tailwindcss): dynamic registration for `didWatchChangedFiles` #4206 (diff)
downloadnvim-lspconfig-e0fae251f8459940331960106d4bd9457cec23de.tar
nvim-lspconfig-e0fae251f8459940331960106d4bd9457cec23de.tar.gz
nvim-lspconfig-e0fae251f8459940331960106d4bd9457cec23de.tar.bz2
nvim-lspconfig-e0fae251f8459940331960106d4bd9457cec23de.tar.lz
nvim-lspconfig-e0fae251f8459940331960106d4bd9457cec23de.tar.xz
nvim-lspconfig-e0fae251f8459940331960106d4bd9457cec23de.tar.zst
nvim-lspconfig-e0fae251f8459940331960106d4bd9457cec23de.zip
docs: update configs.md
skip-checks: true
Diffstat (limited to 'doc')
-rw-r--r--doc/configs.md10
-rw-r--r--doc/configs.txt8
2 files changed, 18 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md
index afe6eda0..e67f1ab0 100644
--- a/doc/configs.md
+++ b/doc/configs.md
@@ -11881,6 +11881,16 @@ vim.lsp.enable('tailwindcss')
Default config:
- `before_init`: [../lsp/tailwindcss.lua:10](../lsp/tailwindcss.lua#L10)
+- `capabilities` :
+ ```lua
+ {
+ workspace = {
+ didChangeWatchedFiles = {
+ dynamicRegistration = true
+ }
+ }
+ }
+ ```
- `cmd` :
```lua
{ "tailwindcss-language-server", "--stdio" }
diff --git a/doc/configs.txt b/doc/configs.txt
index cbeefa24..9b140270 100644
--- a/doc/configs.txt
+++ b/doc/configs.txt
@@ -8803,6 +8803,14 @@ Snippet to enable the language server: >lua
Default config:
- before_init (use "gF" to view): ../lsp/tailwindcss.lua:10
+- capabilities: >lua
+ {
+ workspace = {
+ didChangeWatchedFiles = {
+ dynamicRegistration = true
+ }
+ }
+ }
- cmd: >lua
{ "tailwindcss-language-server", "--stdio" }
- filetypes: >lua