Add more letters to PIE

This commit is contained in:
Hao Liu
2025-01-06 15:08:02 +08:00
parent aa9013dcd4
commit 9db2005bda

View File

@@ -471,7 +471,15 @@ namespace PowerAccent.Core
{
return letter switch
{
LetterKey.VK_A => new[] { "ā" },
LetterKey.VK_E => new[] { "ē" },
LetterKey.VK_O => new[] { "ō" },
LetterKey.VK_K => new[] { "ḱ" },
LetterKey.VK_G => new[] { "ǵ" },
LetterKey.VK_R => new[] { "r̥" },
LetterKey.VK_L => new[] { "l̥" },
LetterKey.VK_M => new[] { "m̥" },
LetterKey.VK_N => new[] { "n̥" },
_ => Array.Empty<string>(),
};
}