enyancc / vscode-ext-color-highlight

Extension adds colored border around css/web colors in the editor
GNU General Public License v3.0
262 stars 83 forks source link

Does not work with numeric separators #156

Open RodrigoNovais opened 2 years ago

RodrigoNovais commented 2 years ago

Javascript allows developers to increase readability on their codes inserting underscores in numeric literals I suspect that the regex rule used to detect those color codes are not matching against them

image

ferretwithaberet commented 2 years ago

A potential fix would be to strip the underscores before checking the regex rule. This might lead to other issues though.