Improved parser for syntax highlighting. Also added even more keywords (all from appendix C of the postgresql docs are included now)

This commit is contained in:
eelke 2017-02-09 21:54:31 +01:00
parent 8026b5b0fa
commit 8ea0cd8285
2 changed files with 117 additions and 58 deletions

View file

@ -27,6 +27,7 @@ private:
QTextCharFormat m_commentFormat;
QTextCharFormat m_quotedStringFormat;
QTextCharFormat m_typeFormat;
QTextCharFormat m_quotedIdentifierFormat;
t_SymbolSet m_typeNames;
};