aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorKevin Liao <q85292542000@gmail.com>2023-07-06 17:39:09 +0800
committerGitHub <noreply@github.com>2023-07-06 17:39:09 +0800
commit9442842b8e42dc402c8ea76a1569a8234ba6b527 (patch)
tree514651d274544876cbd47a48633c37b073696061 /lua
parentdocs: update server_configurations.md (diff)
downloadnvim-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.lua6
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/*",
},
},
}