Ekopalypse / EnhanceAnyLexer

Notepad++ plugin that adds an additional foreground colouring option to existing lexers
MIT License
16 stars 3 forks source link

CAPS only coloring #1

Closed oirfeodent closed 2 years ago

oirfeodent commented 2 years ago

Using the below in EnhanceAnyLexerConfig.ini file, also highlights small letter words. Is this by intention, if so what should be done to color only words with CAPS only. 0xff00ff = \b([A-Z]+)\b

Ekopalypse commented 2 years ago

The default setting in Npp is that it is not case sensitive, you must specify this explicitly with a (?-i), i.e. 0xff00ff = (?-i)\b([A-Z]+)\b

oirfeodent commented 2 years ago

Thx @Ekopalypse . Its not an issue then, will close it.