diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-11-09 08:12:11 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-11-09 08:12:11 -0800 |
commit | d253a3182859c7c989449122a60d5f362f19ded0 (patch) | |
tree | 7459cddc57f93107fa4cee89d4f0a94dd0f0f131 /editor/VSCode/syntaxes | |
parent | d1808995b2c6b99749237a29e6ac6477d00ff8f9 (diff) | |
download | mu-d253a3182859c7c989449122a60d5f362f19ded0.tar.gz |
rename grapheme to code-point-utf8
Longer name, but it doesn't lie. We have no data structure right now for combining multiple code points. And it makes no sense for the notion of a grapheme to conflate its Unicode encoding.
Diffstat (limited to 'editor/VSCode/syntaxes')
-rw-r--r-- | editor/VSCode/syntaxes/Mu.tmLanguage | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/VSCode/syntaxes/Mu.tmLanguage b/editor/VSCode/syntaxes/Mu.tmLanguage index 64f71320..b10d6d17 100644 --- a/editor/VSCode/syntaxes/Mu.tmLanguage +++ b/editor/VSCode/syntaxes/Mu.tmLanguage @@ -48,7 +48,7 @@ </dict> <dict> <key>match</key> - <string>\b(addr|array|boolean|byte|code-point|grapheme|handle|int|float|stream|type)\b</string> + <string>\b(addr|array|boolean|byte|code-point|code-point-utf8|handle|int|float|stream|type)\b</string> <key>name</key> <string>storage.type.mu</string> </dict> |