diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-03-15 14:16:45 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-03-15 14:16:45 +0000 |
| commit | dd261ad5266ab5bbec249d21efeceda98ff3e1a6 (patch) | |
| tree | 92d8fb07df797e641580d6b244f26c773da33ea7 /doc | |
| parent | feat: stan_ls #4346 (diff) | |
| download | nvim-lspconfig-dd261ad5266ab5bbec249d21efeceda98ff3e1a6.tar nvim-lspconfig-dd261ad5266ab5bbec249d21efeceda98ff3e1a6.tar.gz nvim-lspconfig-dd261ad5266ab5bbec249d21efeceda98ff3e1a6.tar.bz2 nvim-lspconfig-dd261ad5266ab5bbec249d21efeceda98ff3e1a6.tar.lz nvim-lspconfig-dd261ad5266ab5bbec249d21efeceda98ff3e1a6.tar.xz nvim-lspconfig-dd261ad5266ab5bbec249d21efeceda98ff3e1a6.tar.zst nvim-lspconfig-dd261ad5266ab5bbec249d21efeceda98ff3e1a6.zip | |
docs: update configs.md
skip-checks: true
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/configs.md | 48 | ||||
| -rw-r--r-- | doc/configs.txt | 38 |
2 files changed, 72 insertions, 14 deletions
diff --git a/doc/configs.md b/doc/configs.md index 8c42cc93..6499de25 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -308,6 +308,7 @@ Nvim by running `:help lspconfig-all`. - [sqlls](#sqlls) - [sqls](#sqls) - [sqruff](#sqruff) +- [stan_ls](#stan_ls) - [standardrb](#standardrb) - [starlark_rust](#starlark_rust) - [starpls](#starpls) @@ -2479,11 +2480,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" } } ``` @@ -4971,20 +4972,20 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" }, editorPluginInfo = { name = "Neovim LSP", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" }, extension = { name = "Neovim LSP Client", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" }, ide = { name = "Neovim", vendor = "Neovim", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" } } ``` @@ -11373,7 +11374,7 @@ Default config: activateSnykIac = "true", activateSnykOpenSource = "true", integrationName = "Neovim", - integrationVersion = "0.12.0-dev+gf58d24040a", + integrationVersion = "0.12.0-dev+g9084483715", token = vim.NIL, trustedFolders = {} } @@ -11925,6 +11926,39 @@ Default config: --- +## stan_ls + +https://github.com/tomatitito/stan-language-server + + Language server for the Stan probabilistic programming language. + +@type vim.lsp.Config + +Snippet to enable the language server: +```lua +vim.lsp.enable('stan_ls') +``` + +Default config: +- `cmd` : + ```lua + { "stan-language-server", "--stdio" } + ``` +- `filetypes` : + ```lua + { "stan" } + ``` +- `root_markers` : + ```lua + { ".git" } + ``` +- `settings` : + ```lua + {} + ``` + +--- + ## standardrb https://github.com/testdouble/standard diff --git a/doc/configs.txt b/doc/configs.txt index 0c8c0935..98a18232 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -1626,11 +1626,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" } } - on_attach (use "gF" to view): ../lsp/copilot.lua:106 @@ -3542,20 +3542,20 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" }, editorPluginInfo = { name = "Neovim LSP", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" }, extension = { name = "Neovim LSP Client", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" }, ide = { name = "Neovim", vendor = "Neovim", - version = "0.12.0-dev+gf58d24040a" + version = "0.12.0-dev+g9084483715" } } - on_attach (use "gF" to view): ../lsp/gitlab_duo.lua:317 @@ -8460,7 +8460,7 @@ Default config: activateSnykIac = "true", activateSnykOpenSource = "true", integrationName = "Neovim", - integrationVersion = "0.12.0-dev+gf58d24040a", + integrationVersion = "0.12.0-dev+g9084483715", token = vim.NIL, trustedFolders = {} } @@ -8873,6 +8873,30 @@ Default config: < ------------------------------------------------------------------------------ +stan_ls + +https://github.com/tomatitito/stan-language-server + + Language server for the Stan probabilistic programming language. + +@type vim.lsp.Config + +Snippet to enable the language server: >lua + vim.lsp.enable('stan_ls') + + +Default config: +- cmd: >lua + { "stan-language-server", "--stdio" } +- filetypes: >lua + { "stan" } +- root_markers: >lua + { ".git" } +- settings: >lua + {} +< + +------------------------------------------------------------------------------ standardrb https://github.com/testdouble/standard |
