File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -257,6 +257,7 @@ Nvim by running `:help lspconfig-all`.
257257- [ robotframework_ls] ( #robotframework_ls )
258258- [ roc_ls] ( #roc_ls )
259259- [ rome] ( #rome )
260+ - [ rpmspec] ( #rpmspec )
260261- [ rubocop] ( #rubocop )
261262- [ ruby_lsp] ( #ruby_lsp )
262263- [ ruff] ( #ruff )
@@ -9259,6 +9260,35 @@ Default config:
92599260
92609261---
92619262
9263+ ## rpmspec
9264+
9265+ https://github.com/dcermak/rpm-spec-language-server
9266+
9267+ Language server protocol (LSP) support for RPM Spec files.
9268+
9269+ Snippet to enable the language server:
9270+ ``` lua
9271+ require ' lspconfig' .rpmspec .setup {}
9272+ ```
9273+
9274+ Default config:
9275+ - ` cmd ` :
9276+ ``` lua
9277+ { " python3" , " -mrpm_lsp_server" , " --stdio" }
9278+ ```
9279+ - ` filetypes ` :
9280+ ``` lua
9281+ { " spec" }
9282+ ```
9283+ - ` root_dir ` source (use "gF" to visit): [ ../lua/lspconfig/configs/rpmspec.lua:2] ( ../lua/lspconfig/configs/rpmspec.lua#L2 )
9284+ - ` settings ` :
9285+ ``` lua
9286+ {}
9287+ ```
9288+ - ` single_file_support ` : ` true `
9289+
9290+ ---
9291+
92629292## rubocop
92639293
92649294https://github.com/rubocop/rubocop
Original file line number Diff line number Diff line change @@ -8650,6 +8650,34 @@ Default config:
86508650- `single_file_support` : `true`
86518651
86528652
8653+ ------------------------------------------------------------------------------
8654+ rpmspec
8655+
8656+ https://github.com/dcermak/rpm-spec-language-server
8657+
8658+ Language server protocol (LSP) support for RPM Spec files.
8659+
8660+ Snippet to enable the language server: >lua
8661+ require'lspconfig' .rpmspec.setup{}
8662+
8663+
8664+ Default config:
8665+ - `cmd` :
8666+ ```lua
8667+ { "python3", "-mrpm_lsp_server", "--stdio" }
8668+ ```
8669+ - `filetypes` :
8670+ ```lua
8671+ { "spec" }
8672+ ```
8673+ - `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/rpmspec.lua:2](../lua/lspconfig/configs/rpmspec.lua#L2)
8674+ - `settings` :
8675+ ```lua
8676+ {}
8677+ ```
8678+ - `single_file_support` : `true`
8679+
8680+
86538681------------------------------------------------------------------------------
86548682rubocop
86558683
You can’t perform that action at this time.
0 commit comments