diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-01-02 05:39:42 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-01-02 05:39:42 +0000 |
| commit | ac04ec3c2af08e9821b4eb64ede86072b9b213bf (patch) | |
| tree | 8f688169ba34d2c6155db3f3511e1692f50aabf4 /doc | |
| parent | feat: pony_language_server #4264 (diff) | |
| download | nvim-lspconfig-master.tar nvim-lspconfig-master.tar.gz nvim-lspconfig-master.tar.bz2 nvim-lspconfig-master.tar.lz nvim-lspconfig-master.tar.xz nvim-lspconfig-master.tar.zst nvim-lspconfig-master.zip | |
skip-checks: true
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/configs.md | 40 | ||||
| -rw-r--r-- | doc/configs.txt | 32 |
2 files changed, 60 insertions, 12 deletions
diff --git a/doc/configs.md b/doc/configs.md index b7ffa45b..e33a853e 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -233,6 +233,7 @@ Nvim by running `:help lspconfig-all`. - [pico8_ls](#pico8_ls) - [please](#please) - [pli](#pli) +- [pony_language_server](#pony_language_server) - [poryscript_pls](#poryscript_pls) - [postgres_lsp](#postgres_lsp) - [powershell_es](#powershell_es) @@ -2436,11 +2437,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" } } ``` @@ -4873,20 +4874,20 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" }, editorPluginInfo = { name = "Neovim LSP", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" }, extension = { name = "Neovim LSP Client", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" }, ide = { name = "Neovim", vendor = "Neovim", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" } } ``` @@ -8875,6 +8876,33 @@ Default config: --- +## pony_language_server + +https://github.com/ponylang/pony-language-server + +Language server for the Pony programming language + +Snippet to enable the language server: +```lua +vim.lsp.enable('pony_language_server') +``` + +Default config: +- `cmd` : + ```lua + { "pony-lsp" } + ``` +- `filetypes` : + ```lua + { "pony" } + ``` +- `root_markers` : + ```lua + { "corral.json", ".git" } + ``` + +--- + ## poryscript_pls https://github.com/huderlem/poryscript-pls diff --git a/doc/configs.txt b/doc/configs.txt index c02c1aad..d5803703 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -1592,11 +1592,11 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" }, editorPluginInfo = { name = "Neovim", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" } } - on_attach (use "gF" to view): ../lsp/copilot.lua:106 @@ -3461,20 +3461,20 @@ Default config: { editorInfo = { name = "Neovim", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" }, editorPluginInfo = { name = "Neovim LSP", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" }, extension = { name = "Neovim LSP Client", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" }, ide = { name = "Neovim", vendor = "Neovim", - version = "0.12.0-dev+g03377b9552" + version = "0.12.0-dev+gacc3554439" } } - on_attach (use "gF" to view): ../lsp/gitlab_duo.lua:317 @@ -6519,6 +6519,26 @@ Default config: < ------------------------------------------------------------------------------ +pony_language_server + +https://github.com/ponylang/pony-language-server + +Language server for the Pony programming language + +Snippet to enable the language server: >lua + vim.lsp.enable('pony_language_server') + + +Default config: +- cmd: >lua + { "pony-lsp" } +- filetypes: >lua + { "pony" } +- root_markers: >lua + { "corral.json", ".git" } +< + +------------------------------------------------------------------------------ poryscript_pls https://github.com/huderlem/poryscript-pls |
