olivierverdier / python-latex-highlighting

LaTeX style for Python highlighting
BSD 3-Clause "New" or "Revised" License
453 stars 125 forks source link

Fix highlight of first group of keywords #8

Closed sblondon closed 7 months ago

sblondon commented 5 years ago

The definition of the first group (and, break, etc.) is overridden by the Exception group (Exception, NameError, etc.). So they are not colored in blue.

The patch provides a number to the Exception group to solve the issue. The group is moved in the 8th place so the order is not surprising (1, 2, 3, 8, 4, etc.).