Gorkem Ercan

Results 161 comments of Gorkem Ercan

Is this the case when the `fileExtension` and the `fileMatch` are not identical? The string matching is too simple for that case and we should do a glob match.

`yaml-language-server` creates an index of schemas it needs to know about using `files.associations`. We could improve the behaviour by adding incremental indexing on `didOpen`. Unfortunately, we are not staffed to...

The message is emitted when a section matches the "not" section of the schema. Granted that the message could be better. We need to check if this is the schema...

@nieomylnieja Currently, there is no way to influence the message. It is a fixed message. `title` may help. Perhaps we can change the error message to something like `Matches subschema...

I think [this function ](https://github.com/redhat-developer/yaml-language-server/blob/e200432d3b4950f4744f4cf5dac7dea9ac66e3ea/src/languageservice/services/yamlCompletion.ts#L1243) can be helpful on how to implement this. I would be happy to review if you send a PR.

I am not sure if there is enough user interest to support Deno at the moment. Keeping this request to see further interest.

Yes. It looks like it is coming from the `yaml-language-server`. I suspect that neovim is sending the FoldingRange Capabilities in a way the server is not expecting.

I do not think they are extracted to a document but here is where they are defined https://github.com/openshift/console/blob/16ae21c2b201b8ebc86496116ea590c0e96dcf00/frontend/public/components/catalog/catalog-item-icon.tsx#L99

@csantanapr @markusthoemmes The current solution compiles a .java into .class in memory and loads it to VM. No real .class files are generated. The approach is suitable for single file...

@rabbah Are dependencies packaged into /lib folder even supposed to work. This is not really a Java standard and I do not see anything to enable this on the runtime....