Sequence-Transform is a user library for QMK that enables a rich declarative ruleset for transforming a sequence of keypresses into any output you would like.
Small pr to allow user to use sequence tokens inside of regex groups
For example: (★l|l★) was not a valid group before, but it is with this pr
It uses [\w{MAGIC_CHARS}](it was just \w before) regex group to capture regex groups from the dictionary, so its pretty much safe
Also allowed wordbreak char inside of regex groups, cant figure any use case for that, but there is no actual reason to limit that
Small pr to allow user to use sequence tokens inside of regex groups
For example:
(★l|l★)
was not a valid group before, but it is with this pr It uses[\w{MAGIC_CHARS}]
(it was just\w
before) regex group to capture regex groups from the dictionary, so its pretty much safe