diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-01-31 06:11:03 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-01-31 06:11:03 +0000 |
| commit | 1759ea68fbbb1303192020d3e59936189359e0ed (patch) | |
| tree | 1b30c9e7cf3f816f6d50a56b8875b8d220187633 | |
| parent | feat(ltex): imrove default settings(#2979) (diff) | |
| download | nvim-lspconfig-1759ea68fbbb1303192020d3e59936189359e0ed.tar nvim-lspconfig-1759ea68fbbb1303192020d3e59936189359e0ed.tar.gz nvim-lspconfig-1759ea68fbbb1303192020d3e59936189359e0ed.tar.bz2 nvim-lspconfig-1759ea68fbbb1303192020d3e59936189359e0ed.tar.lz nvim-lspconfig-1759ea68fbbb1303192020d3e59936189359e0ed.tar.xz nvim-lspconfig-1759ea68fbbb1303192020d3e59936189359e0ed.tar.zst nvim-lspconfig-1759ea68fbbb1303192020d3e59936189359e0ed.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 10 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 10 |
2 files changed, 18 insertions, 2 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 3144568a..46f11cf8 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -5637,7 +5637,7 @@ require'lspconfig'.ltex.setup{} ``` - `filetypes` : ```lua - { "bib", "gitcommit", "markdown", "org", "plaintex", "rst", "rnoweb", "tex", "pandoc", "quarto", "rmd" } + { "bib", "gitcommit", "markdown", "org", "plaintex", "rst", "rnoweb", "tex", "pandoc", "quarto", "rmd", "context", "html", "xhtml" } ``` - `get_language_id` : ```lua @@ -5647,6 +5647,14 @@ require'lspconfig'.ltex.setup{} ```lua see source file ``` + - `settings` : + ```lua + { + ltex = { + enabled = { "bibtex", "gitcommit", "markdown", "org", "tex", "restructuredtext", "rsweave", "latex", "quarto", "rmd", "context", "html", "xhtml" } + } + } + ``` - `single_file_support` : ```lua true diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 3144568a..46f11cf8 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -5637,7 +5637,7 @@ require'lspconfig'.ltex.setup{} ``` - `filetypes` : ```lua - { "bib", "gitcommit", "markdown", "org", "plaintex", "rst", "rnoweb", "tex", "pandoc", "quarto", "rmd" } + { "bib", "gitcommit", "markdown", "org", "plaintex", "rst", "rnoweb", "tex", "pandoc", "quarto", "rmd", "context", "html", "xhtml" } ``` - `get_language_id` : ```lua @@ -5647,6 +5647,14 @@ require'lspconfig'.ltex.setup{} ```lua see source file ``` + - `settings` : + ```lua + { + ltex = { + enabled = { "bibtex", "gitcommit", "markdown", "org", "tex", "restructuredtext", "rsweave", "latex", "quarto", "rmd", "context", "html", "xhtml" } + } + } + ``` - `single_file_support` : ```lua true |
