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
Hi! I have installed a an extension for vscode v1.15.0.
Wrote this json file for validation and suggestions:
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Example", "description": "An example of how to use snippets for json schema", "type": "object", "properties": { "object-mapper": { "type": "object", "properties": { "test1": {"type": "string"}, "test2": {"type": "string"} } } } }
This is my file:
# yaml-language-server: $schema=/Users/avkazantseva9/test_plugin/suggest.json object-mapper:
When i type object-mapper i get suggestions about tests1 and test2. On this photo there are no suggestions:
I get any suggestions, only if i type "te", then i will get suggestions about them.
The text was updated successfully, but these errors were encountered:
Actually the problem found (https://github.com/redhat-developer/yaml-language-server/blob/main/src/languageservice/services/yamlCompletion.ts#L126-L128). However the logic of this files very strange, as it makes user to know fields
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Hi! I have installed a an extension for vscode v1.15.0.
Wrote this json file for validation and suggestions:
This is my file:
Expected Behavior
When i type object-mapper i get suggestions about tests1 and test2.
On this photo there are no suggestions:
Current Behavior
I get any suggestions, only if i type "te", then i will get suggestions about them.
Steps to Reproduce
Environment
The text was updated successfully, but these errors were encountered: