Changing the syntax highlighting for table names in lang-sql.

Hi… I am new to Codemirror and I am wondering if it is possible to change the syntax highlighting for only the table names in lang-sql package of Codemirror v6.

Is it possible to use the syntax tree to get the information regarding whether the keyword is a table name or not?

No, the ‘parser’ in lang-sql is very simplistic (to avoid having to deal with the enormously complex grammar and all the different dialects) and styles all (non-keyword, non-builtin) identifiers with the same styling tags.

Thanks for replying :slight_smile: