diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-11-20 22:57:56 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-11-20 22:57:56 +0000 |
| commit | e0fae251f8459940331960106d4bd9457cec23de (patch) | |
| tree | 2b075b5fd0135830a0419b563361eea558431a0d /doc | |
| parent | fix(tailwindcss): dynamic registration for `didWatchChangedFiles` #4206 (diff) | |
| download | nvim-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.md | 10 | ||||
| -rw-r--r-- | doc/configs.txt | 8 |
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 |
