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,
easy to reproduce:
Create a new folder:
Create a DTD file person.dtd
<!ELEMENT person ( first_name) >
Create a XML file person.xml with a reference to a DTD file
<?xml version="1.0" ?> <?xml-model href="person.dtd" ?> <person> <first_name>Michael</first_name> </person>
<?xml version="1.0" ?>
<?xml-model href="person.dtd" ?>
<person>
<first_name>Michael</first_name>
</person>
Go to terminal and type
git init git add * git commit -m"test"
Now vscode will show you a problem in file
person.xml.git
which normally does not exists
The text was updated successfully, but these errors were encountered:
I can reproduce this bug. That's really odd, vscode-xml should only be reporting errors on open files.
Sorry, something went wrong.
This is a known issue from other VS Code extensions, I'll take a look into it.
Only process XML documents with the schemes 'file' and 'untitled'
96f7c64
Fixes redhat-developer#861 Signed-off-by: David Thompson <[email protected]>
8665b50
7accd8a
Fixes #861 Signed-off-by: David Thompson <[email protected]>
datho7561
Successfully merging a pull request may close this issue.
Hi,
easy to reproduce:
Create a new folder:
Create a DTD file person.dtd
<!ELEMENT person ( first_name) >
Create a XML file person.xml with a reference to a DTD file
<?xml version="1.0" ?>
<?xml-model href="person.dtd" ?>
<person>
<first_name>Michael</first_name>
</person>
Go to terminal and type
git init
git add *
git commit -m"test"
Now vscode will show you a problem in file
person.xml.git
which normally does not exists
The text was updated successfully, but these errors were encountered: