cbunn
cbunn

Reputation: 205

How do I use xmllint in Sublime Text 3?

I recently installed SublimeLinter in Sublime Text 3 to help me write my JavaScript files correctly. I also setup xmllint to help me with XML files I work with. However I cannot get it to run in Sublime Text 3. I followed these steps to get it installed and running, I can list its directory from the command prompt and everything is in order. Xmllint is also enabled in Sublime Text 3. However when I work with an XML file in Sublime Text 3 the linter does not appear to be working. How can I configure xmllint so that it will run within Sublime Text 3?

Upvotes: 3

Views: 2894

Answers (1)

sntx_error
sntx_error

Reputation: 36

Found answer here in the info snippet at the bottom:

On Windows, linter errors messages will not always appear. It appears to be a bug in python.

And below:

Unlike the other error messages mentioned earlier, you would not see this message unless debug mode was turned on, because it isn’t an error message detected by SublimeLinter, it is the output captured from the [...] executable. So if you aren’t seeing any errors or warnings in the console and the linter isn’t working, turn on debug mode to see if you can find the source of the problem.

Upvotes: 2

Related Questions