Josh Pinkney

Results 63 comments of Josh Pinkney

> how can I configure the vscode-yaml extension that I can use it also for "not pure YAML yet" files? There's currently no way to do that, but it would...

I won't have time to look at it until next week. But I have a quick question. Since the `$schema` key is non-standard what happens if a user has a...

@shsuman Just out of curiosity is there any particular reason why you would be forking? cc @gorkem

Like Yevhen said, I think this would be hard to support and would probably produce validation errors and incorrect completion because we won't know if the yaml key is in...

I'm not entirely sure if we have the ability to customize what happens when you just press enter in a yaml file. If you have a JSON schema attached to...

From reading the docs it looks like this could be implemented using [indent rules](https://code.visualstudio.com/api/language-extensions/language-configuration-guide#indentation-rules)

I think if you're using the custom schema contributor API its possible to use schemaSequence. E.g. with this yaml ```yaml --- apiVersion: v1 kind: Pod metadata: name: myapp labels: name:...

Yeah, I think a preference option would be fine

It was unpublished because of all the issues that happened in https://github.com/adamvoss/vscode-yaml/issues/22. However, If you are interested in a working alternative we have one here: [redhat.vscode-yaml](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml). At one point we...

If i'm not mistaken you can do something like: ``` yaml.schemas: { "./schemas/my-schema.json": "my.schema.yaml" } ``` So that "./schemas/my-schema.json is applied to my.schema.yaml. Relative paths should work.