Anybody can explain me why this error occures me? I have same settings on other pc.
// These settings override both User and Default settings for the SQL syntax
{
“extensions” : [“qvs”]
}
Anybody can explain me why this error occures me? I have same settings on other pc.
// These settings override both User and Default settings for the SQL syntax
{
“extensions” : [“qvs”]
}
This can happen in older versions of Sublime if the encoding of the file is set such that it includes a BOM
character (a Byte Order Mark
); as a first step I’d double check that the file encoding is set to UTF-8
and see if that helps.
Hey, really thanks, yes, i had BOM as default, the files i allways edit needs bom, this was the issue, ty <3