yaml-language-server
yaml-language-server copied to clipboard
Provide full autocompletion when there are multiple requires and only one is fullfilled
E.g. In a case when you have multiple require statements that have the same elements in the same context
required: [
"name",
"age"
]
....
required: [
"name"
]
and a schema so far consists of
name: Josh
Auto completion should autocomplete from both of the fields but currently just autocomplete from the second one because the second one is technically valid as well