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
xml(DownloadProblem)
Given this foo.myxml file:
<?xml version="1.0" encoding="UTF-8"?> <foo> <bar> <meh></meh> </bar> </foo>
If bound to a non-existing schema via file association, like:
"xml.fileAssociations": [ { "pattern": "**/*.myxml", "systemId": "https://nope/myschema.xsd" } ]
Then multiple xml(DownloadProblem) are shown, one for each opening tag, with some weird range:
The larger the number of tags, the worse it gets.
There should be only one error on the root node (with the proper range), similar to other binding methods.
The text was updated successfully, but these errors were encountered:
Multiple xml(DownloadProblem) errors when referencing missing schema in
175d601
file association Fixes redhat-developer/vscode-xml#878 Signed-off-by: azerr <[email protected]>
e49bef6
angelozerr
Successfully merging a pull request may close this issue.
Given this foo.myxml file:
If bound to a non-existing schema via file association, like:
Then multiple
xml(DownloadProblem)
are shown, one for each opening tag, with some weird range:The larger the number of tags, the worse it gets.
There should be only one error on the root node (with the proper range), similar to other binding methods.
The text was updated successfully, but these errors were encountered: