diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-08-11 20:49:55 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-08-11 20:49:55 +0000 |
| commit | f0c6ccf43997a1c7e9ec4aea36ffbf2ddd9f15ef (patch) | |
| tree | 24328ecc4d689732bc07793d5bb296465f682c45 | |
| parent | Merge #3993 fix: update configs to 0.11+ (diff) | |
| download | nvim-lspconfig-f0c6ccf43997a1c7e9ec4aea36ffbf2ddd9f15ef.tar nvim-lspconfig-f0c6ccf43997a1c7e9ec4aea36ffbf2ddd9f15ef.tar.gz nvim-lspconfig-f0c6ccf43997a1c7e9ec4aea36ffbf2ddd9f15ef.tar.bz2 nvim-lspconfig-f0c6ccf43997a1c7e9ec4aea36ffbf2ddd9f15ef.tar.lz nvim-lspconfig-f0c6ccf43997a1c7e9ec4aea36ffbf2ddd9f15ef.tar.xz nvim-lspconfig-f0c6ccf43997a1c7e9ec4aea36ffbf2ddd9f15ef.tar.zst nvim-lspconfig-f0c6ccf43997a1c7e9ec4aea36ffbf2ddd9f15ef.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 24 | ||||
| -rw-r--r-- | doc/configs.txt | 24 |
2 files changed, 30 insertions, 18 deletions
diff --git a/doc/configs.md b/doc/configs.md index 7bc868e8..fca1fad7 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -2035,8 +2035,8 @@ Default config: ```lua { "c", "cpp", "objc", "objcpp", "cuda" } ``` -- `on_attach`: [../lsp/clangd.lua:63](../lsp/clangd.lua#L63) -- `on_init`: [../lsp/clangd.lua:63](../lsp/clangd.lua#L63) +- `on_attach`: [../lsp/clangd.lua:64](../lsp/clangd.lua#L64) +- `on_init`: [../lsp/clangd.lua:64](../lsp/clangd.lua#L64) - `root_markers` : ```lua { ".clangd", ".clang-tidy", ".clang-format", "compile_commands.json", "compile_flags.txt", "configure.ac", ".git" } @@ -6659,7 +6659,7 @@ Default config: ```lua { "markdown" } ``` -- `on_attach`: [../lsp/markdown_oxide.lua:11](../lsp/markdown_oxide.lua#L11) +- `on_attach`: [../lsp/markdown_oxide.lua:23](../lsp/markdown_oxide.lua#L23) - `root_markers` : ```lua { ".git", ".obsidian", ".moxide.toml" } @@ -9905,7 +9905,7 @@ vim.lsp.enable('rust_analyzer') ``` Default config: -- `before_init`: [../lsp/rust_analyzer.lua:54](../lsp/rust_analyzer.lua#L54) +- `before_init`: [../lsp/rust_analyzer.lua:55](../lsp/rust_analyzer.lua#L55) - `capabilities` : ```lua { @@ -9922,8 +9922,8 @@ Default config: ```lua { "rust" } ``` -- `on_attach`: [../lsp/rust_analyzer.lua:54](../lsp/rust_analyzer.lua#L54) -- `root_dir`: [../lsp/rust_analyzer.lua:54](../lsp/rust_analyzer.lua#L54) +- `on_attach`: [../lsp/rust_analyzer.lua:55](../lsp/rust_analyzer.lua#L55) +- `root_dir`: [../lsp/rust_analyzer.lua:55](../lsp/rust_analyzer.lua#L55) --- @@ -11275,7 +11275,7 @@ Default config: ```lua { "verilog", "systemverilog" } ``` -- `on_attach`: [../lsp/svlangserver.lua:28](../lsp/svlangserver.lua#L28) +- `on_attach`: [../lsp/svlangserver.lua:13](../lsp/svlangserver.lua#L13) - `root_markers` : ```lua { ".svlangserver", ".git" } @@ -11769,6 +11769,12 @@ A completion engine built from scratch for (La)TeX. See https://github.com/latex-lsp/texlab/wiki/Configuration for configuration options. +There are some non standard commands supported, namely: +`LspTexlabBuild`, `LspTexlabForward`, `LspTexlabCancelBuild`, +`LspTexlabDependencyGraph`, `LspTexlabCleanArtifacts`, +`LspTexlabCleanAuxiliary`, `LspTexlabFindEnvironments`, +and `LspTexlabChangeEnvironment`. + Snippet to enable the language server: ```lua vim.lsp.enable('texlab') @@ -11783,7 +11789,7 @@ Default config: ```lua { "tex", "plaintex", "bib" } ``` -- `on_attach`: [../lsp/texlab.lua:140](../lsp/texlab.lua#L140) +- `on_attach`: [../lsp/texlab.lua:135](../lsp/texlab.lua#L135) - `root_markers` : ```lua { ".git", ".latexmkrc", "latexmkrc", ".texlabroot", "texlabroot", "Tectonic.toml" } @@ -12030,7 +12036,7 @@ Default config: ```lua { "typst" } ``` -- `on_attach`: [../lsp/tinymist.lua:52](../lsp/tinymist.lua#L52) +- `on_attach`: [../lsp/tinymist.lua:48](../lsp/tinymist.lua#L48) - `root_markers` : ```lua { ".git" } diff --git a/doc/configs.txt b/doc/configs.txt index d54fed63..dfdd6221 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -1285,8 +1285,8 @@ Default config: { "clangd" } - filetypes: >lua { "c", "cpp", "objc", "objcpp", "cuda" } -- on_attach (use "gF" to view): ../lsp/clangd.lua:63 -- on_init (use "gF" to view): ../lsp/clangd.lua:63 +- on_attach (use "gF" to view): ../lsp/clangd.lua:64 +- on_init (use "gF" to view): ../lsp/clangd.lua:64 - root_markers: >lua { ".clangd", ".clang-tidy", ".clang-format", "compile_commands.json", "compile_flags.txt", "configure.ac", ".git" } < @@ -4813,7 +4813,7 @@ Default config: { "markdown-oxide" } - filetypes: >lua { "markdown" } -- on_attach (use "gF" to view): ../lsp/markdown_oxide.lua:11 +- on_attach (use "gF" to view): ../lsp/markdown_oxide.lua:23 - root_markers: >lua { ".git", ".obsidian", ".moxide.toml" } < @@ -7290,7 +7290,7 @@ Snippet to enable the language server: >lua Default config: -- before_init (use "gF" to view): ../lsp/rust_analyzer.lua:54 +- before_init (use "gF" to view): ../lsp/rust_analyzer.lua:55 - capabilities: >lua { experimental = { @@ -7301,8 +7301,8 @@ Default config: { "rust-analyzer" } - filetypes: >lua { "rust" } -- on_attach (use "gF" to view): ../lsp/rust_analyzer.lua:54 -- root_dir (use "gF" to view): ../lsp/rust_analyzer.lua:54 +- on_attach (use "gF" to view): ../lsp/rust_analyzer.lua:55 +- root_dir (use "gF" to view): ../lsp/rust_analyzer.lua:55 < ------------------------------------------------------------------------------ @@ -8314,7 +8314,7 @@ Default config: { "svlangserver" } - filetypes: >lua { "verilog", "systemverilog" } -- on_attach (use "gF" to view): ../lsp/svlangserver.lua:28 +- on_attach (use "gF" to view): ../lsp/svlangserver.lua:13 - root_markers: >lua { ".svlangserver", ".git" } - settings: >lua @@ -8703,6 +8703,12 @@ A completion engine built from scratch for (La)TeX. See https://github.com/latex-lsp/texlab/wiki/Configuration for configuration options. +There are some non standard commands supported, namely: +`LspTexlabBuild`, `LspTexlabForward`, `LspTexlabCancelBuild`, +`LspTexlabDependencyGraph`, `LspTexlabCleanArtifacts`, +`LspTexlabCleanAuxiliary`, `LspTexlabFindEnvironments`, +and `LspTexlabChangeEnvironment`. + Snippet to enable the language server: >lua vim.lsp.enable('texlab') @@ -8712,7 +8718,7 @@ Default config: { "texlab" } - filetypes: >lua { "tex", "plaintex", "bib" } -- on_attach (use "gF" to view): ../lsp/texlab.lua:140 +- on_attach (use "gF" to view): ../lsp/texlab.lua:135 - root_markers: >lua { ".git", ".latexmkrc", "latexmkrc", ".texlabroot", "texlabroot", "Tectonic.toml" } - settings: >lua @@ -8907,7 +8913,7 @@ Default config: { "tinymist" } - filetypes: >lua { "typst" } -- on_attach (use "gF" to view): ../lsp/tinymist.lua:52 +- on_attach (use "gF" to view): ../lsp/tinymist.lua:48 - root_markers: >lua { ".git" } < |
