We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When write a piece of yaml in flow style, Auto completion can't suggest string enums.
Here is a demo:
while in indent mode, it can suggest right choices:
However, if you already input some characters , the suggestion just works again event in flow style :
schema.json used in the demo:
{ "$schema": "http://json-schema.org/draft-07/schema", "type":"object", "properties": { "A" : { "type" : "string", "enum": [ "a1", "a2" ] }, "B" : { "type":"string", "enum": [ "b1", "b2" ] } } }
The text was updated successfully, but these errors were encountered:
redhat-developer#239 fix completion on flow style mapping
9a13965
Signed-off-by: Yevhen Vydolob <[email protected]>
Fix completion on flow style mapping (#342)
8e353ac
* #239 fix completion on flow style mapping Signed-off-by: Yevhen Vydolob <[email protected]> * update parser version Signed-off-by: Yevhen Vydolob <[email protected]> * set test timeout to 5s Signed-off-by: Yevhen Vydolob <[email protected]>
evidolob
Successfully merging a pull request may close this issue.
When write a piece of yaml in flow style, Auto completion can't suggest string enums.
Here is a demo:
while in indent mode, it can suggest right choices:
However, if you already input some characters , the suggestion just works again event in flow style :
schema.json used in the demo:
{ "$schema": "http://json-schema.org/draft-07/schema", "type":"object", "properties": { "A" : { "type" : "string", "enum": [ "a1", "a2" ] }, "B" : { "type":"string", "enum": [ "b1", "b2" ] } } }
The text was updated successfully, but these errors were encountered: