Unfortunately, that’s not the problem, but thanks for checking it out. Oniguruma allows Unicode’s formal character property names to be specified with space or underscore. Sublime doesn’t recognize either. I also tried “Id_Start”, “Id Start”, “id_start” and “id start”.
Fortunately it’s possible to replicate this using a collection of other two-letter property aliases and some additional explicit inclusions. The resulting regex is longer, of course, but hardly the worst I’ve dealt with.
On the other hand it does seem notable to me that it’s not available. Not so much because it suggests we can’t rely on Oniguruma’s documentation to know what will be valid (trial and error is pretty painless, since fantastically Sumblime live-reloads the syntax definition any time you save), but mainly because the particular property classes in question – ID Start, ID Continue, XID Start and XID Continue – were created to assist in tasks related to programming language syntax. These groups correspond to the typical set of characters that are legal in identifiers (in languages which allow Unicode identifiers), give or take a few characters you may need to specify in addition. Pretty useful for writing syntax matching patterns!