diff options
| author | Kevin Liao <q85292542000@gmail.com> | 2023-07-06 17:39:09 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-06 17:39:09 +0800 |
| commit | 9442842b8e42dc402c8ea76a1569a8234ba6b527 (patch) | |
| tree | 514651d274544876cbd47a48633c37b073696061 /lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-9442842b8e42dc402c8ea76a1569a8234ba6b527.tar nvim-lspconfig-9442842b8e42dc402c8ea76a1569a8234ba6b527.tar.gz nvim-lspconfig-9442842b8e42dc402c8ea76a1569a8234ba6b527.tar.bz2 nvim-lspconfig-9442842b8e42dc402c8ea76a1569a8234ba6b527.tar.lz nvim-lspconfig-9442842b8e42dc402c8ea76a1569a8234ba6b527.tar.xz nvim-lspconfig-9442842b8e42dc402c8ea76a1569a8234ba6b527.tar.zst nvim-lspconfig-9442842b8e42dc402c8ea76a1569a8234ba6b527.zip | |
docs: fix documentation for missing commas (#2703)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/yamlls.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/lspconfig/server_configurations/yamlls.lua b/lua/lspconfig/server_configurations/yamlls.lua index 43d04e48..531e6f8c 100644 --- a/lua/lspconfig/server_configurations/yamlls.lua +++ b/lua/lspconfig/server_configurations/yamlls.lua @@ -42,9 +42,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/*", }, }, } |
