How do I disable error highlighting when editing GLSL files?
Moved
Unsolved
Qt Creator and other tools
-
Hello.
I have a file fragshader.frag, to declare the structures used in it, other files are used that are included in it using #include, but Qt Creator does not take into account the files included with #include, as a result, the editor says about a lot of errors that are not actually present. I want to turn off the highlighting of lines with errors.
-
hi @mrjbom
from the documentation:
To suppress the message for a particular file pattern, select Tools > Options > Text Editor > Generic Highlighter and add the pattern to the Ignored file patterns field.
https://doc.qt.io/qtcreator/creator-highlighting.html#generic-highlighting
that should do the trick, I think