aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-04-23 11:50:34 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-04-23 11:50:34 +0000
commit795ed3a50a02aa957f2b4d2138229292a7bdf354 (patch)
tree459eec5a26b057a7ba80e2975060eb27f4a5646d
parentdocs(rpmspec): updated `cmd` and `description` #3756 (diff)
downloadnvim-lspconfig-795ed3a50a02aa957f2b4d2138229292a7bdf354.tar
nvim-lspconfig-795ed3a50a02aa957f2b4d2138229292a7bdf354.tar.gz
nvim-lspconfig-795ed3a50a02aa957f2b4d2138229292a7bdf354.tar.bz2
nvim-lspconfig-795ed3a50a02aa957f2b4d2138229292a7bdf354.tar.lz
nvim-lspconfig-795ed3a50a02aa957f2b4d2138229292a7bdf354.tar.xz
nvim-lspconfig-795ed3a50a02aa957f2b4d2138229292a7bdf354.tar.zst
nvim-lspconfig-795ed3a50a02aa957f2b4d2138229292a7bdf354.zip
docs: update configs.md
skip-checks: true
-rw-r--r--doc/configs.md8
-rw-r--r--doc/configs.txt8
2 files changed, 14 insertions, 2 deletions
diff --git a/doc/configs.md b/doc/configs.md
index c35ee47b..e947f840 100644
--- a/doc/configs.md
+++ b/doc/configs.md
@@ -8969,6 +8969,12 @@ https://github.com/dcermak/rpm-spec-language-server
Language server protocol (LSP) support for RPM Spec files.
+`rpm-spec-language-server` can be installed by running,
+
+```sh
+pip install rpm-spec-language-server
+```
+
Snippet to enable the language server:
```lua
require'lspconfig'.rpmspec.setup{}
@@ -8977,7 +8983,7 @@ require'lspconfig'.rpmspec.setup{}
Default config:
- `cmd` :
```lua
- { "python3", "-mrpm_lsp_server", "--stdio" }
+ { "rpm_lsp_server", "--stdio" }
```
- `filetypes` :
```lua
diff --git a/doc/configs.txt b/doc/configs.txt
index 53555c52..59607e0b 100644
--- a/doc/configs.txt
+++ b/doc/configs.txt
@@ -8392,6 +8392,12 @@ https://github.com/dcermak/rpm-spec-language-server
Language server protocol (LSP) support for RPM Spec files.
+`rpm-spec-language-server` can be installed by running,
+
+```sh
+pip install rpm-spec-language-server
+```
+
Snippet to enable the language server: >lua
vim.lsp.enable('rpmspec')
@@ -8399,7 +8405,7 @@ Snippet to enable the language server: >lua
Default config:
- `cmd` :
```lua
- { "python3", "-mrpm_lsp_server", "--stdio" }
+ { "rpm_lsp_server", "--stdio" }
```
- `filetypes` :
```lua