Skip to content

Commit 8ffba23

Browse files
github-actions[bot]GaetanLepage
authored andcommitted
generated: Update
- Updated lspconfig-servers.json - Updated rust-analyzer.nix
1 parent 2435325 commit 8ffba23

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

generated/lspconfig-servers.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1321,8 +1321,8 @@
13211321
"name": "rome"
13221322
},
13231323
{
1324-
"cmd": ["python3", "-mrpm_lsp_server", "--stdio"],
1325-
"desc": "https://github.com/dcermak/rpm-spec-language-server\n\nLanguage server protocol (LSP) support for RPM Spec files.\n",
1324+
"cmd": ["rpm_lsp_server", "--stdio"],
1325+
"desc": "https://github.com/dcermak/rpm-spec-language-server\n\nLanguage server protocol (LSP) support for RPM Spec files.\n\n`rpm-spec-language-server` can be installed by running,\n\n```sh\npip install rpm-spec-language-server\n```\n",
13261326
"name": "rpmspec"
13271327
},
13281328
{
@@ -1492,7 +1492,7 @@
14921492
},
14931493
{
14941494
"cmd": ["sqls"],
1495-
"desc": "https://github.com/sqls-server/sqls\n\n```lua\nrequire'lspconfig'.sqls.setup{\n cmd = {\"path/to/command\", \"-config\", \"path/to/config.yml\"};\n ...\n}\n```\nSqls can be installed via `go get github.com/sqls-server/sqls`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls).\n\n ",
1495+
"desc": "https://github.com/sqls-server/sqls\n\n```lua\nrequire'lspconfig'.sqls.setup{\n cmd = {\"path/to/command\", \"-config\", \"path/to/config.yml\"};\n ...\n}\n```\nSqls can be installed via `go install github.com/sqls-server/sqls@latest`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls).\n\n ",
14961496
"name": "sqls"
14971497
},
14981498
{

generated/rust-analyzer.nix

+6-4
Original file line numberDiff line numberDiff line change
@@ -1230,7 +1230,7 @@
12301230
};
12311231
"rust-analyzer.imports.group.enable" = {
12321232
description = ''
1233-
Group inserted imports by the [following order](https://rust-analyzer.github.io/manual.html#auto-import). Groups are separated by newlines.
1233+
Group inserted imports by the [following order](https://rust-analyzer.github.io/book/features.html#auto-import). Groups are separated by newlines.
12341234
'';
12351235
pluginDefault = true;
12361236
type = {
@@ -2238,9 +2238,11 @@
22382238
22392239
Similarly, the JSON representation of `DiscoverArgument::Buildfile` is:
22402240
2241-
{
2242-
"buildfile": "BUILD"
2243-
}
2241+
``` json
2242+
{
2243+
"buildfile": "BUILD"
2244+
}
2245+
```
22442246
22452247
`DiscoverArgument::Path` is used to find and generate a
22462248
`rust-project.json`, and therefore, a workspace, whereas

0 commit comments

Comments
 (0)