Perspective Key Event Regex New Line

Ugh, you’re right, there is something strange here. It seems that the regex is matching against some string representation of the typed key, not the actual underlying character. A regex like this works when you press enter:
.+(Enter)
image