diff options
| author | github-actions <github-actions@github.com> | 2023-07-06 09:39:24 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2023-07-06 09:39:24 +0000 |
| commit | a7ecaff3245ba4b9e5ed784ebefbedba54e7f0ad (patch) | |
| tree | 4e317cda75962f29d959f8f0614ba1d2ae565463 | |
| parent | docs: fix documentation for missing commas (#2703) (diff) | |
| download | nvim-lspconfig-a7ecaff3245ba4b9e5ed784ebefbedba54e7f0ad.tar nvim-lspconfig-a7ecaff3245ba4b9e5ed784ebefbedba54e7f0ad.tar.gz nvim-lspconfig-a7ecaff3245ba4b9e5ed784ebefbedba54e7f0ad.tar.bz2 nvim-lspconfig-a7ecaff3245ba4b9e5ed784ebefbedba54e7f0ad.tar.lz nvim-lspconfig-a7ecaff3245ba4b9e5ed784ebefbedba54e7f0ad.tar.xz nvim-lspconfig-a7ecaff3245ba4b9e5ed784ebefbedba54e7f0ad.tar.zst nvim-lspconfig-a7ecaff3245ba4b9e5ed784ebefbedba54e7f0ad.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 6 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 49cccc1c..660dcab8 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -10548,9 +10548,9 @@ require('lspconfig').yamlls.setup { yaml = { ... -- other settings. note this overrides the lspconfig defaults. schemas = { - ["https://json.schemastore.org/github-workflow.json"] = "/.github/workflows/*" - ["../path/relative/to/file.yml"] = "/.github/workflows/*" - ["/path/from/root/of/project"] = "/.github/workflows/*" + ["https://json.schemastore.org/github-workflow.json"] = "/.github/workflows/*", + ["../path/relative/to/file.yml"] = "/.github/workflows/*", + ["/path/from/root/of/project"] = "/.github/workflows/*", }, }, } diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 49cccc1c..660dcab8 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -10548,9 +10548,9 @@ require('lspconfig').yamlls.setup { yaml = { ... -- other settings. note this overrides the lspconfig defaults. schemas = { - ["https://json.schemastore.org/github-workflow.json"] = "/.github/workflows/*" - ["../path/relative/to/file.yml"] = "/.github/workflows/*" - ["/path/from/root/of/project"] = "/.github/workflows/*" + ["https://json.schemastore.org/github-workflow.json"] = "/.github/workflows/*", + ["../path/relative/to/file.yml"] = "/.github/workflows/*", + ["/path/from/root/of/project"] = "/.github/workflows/*", }, }, } |
