Compare commits

...

2 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
5168b4d587 Add ¡ and ¿ to Spanish Quick Accent for ! and ? keys
Agent-Logs-Url: https://github.com/microsoft/PowerToys/sessions/6681e100-4156-49f4-8ca9-6a695fe940f2

Co-authored-by: niels9001 <9866362+niels9001@users.noreply.github.com>
2026-04-11 23:42:02 +00:00
copilot-swe-agent[bot]
3f31b8d205 Initial plan 2026-04-11 23:37:50 +00:00

View File

@@ -392,6 +392,7 @@ namespace PowerAccent.Core
{
return letter switch
{
LetterKey.VK_1 => new[] { "¡" },
LetterKey.VK_A => new[] { "á" },
LetterKey.VK_E => new[] { "é", "€" },
LetterKey.VK_H => new[] { "ḥ" },
@@ -400,6 +401,7 @@ namespace PowerAccent.Core
LetterKey.VK_N => new[] { "ñ" },
LetterKey.VK_O => new[] { "ó" },
LetterKey.VK_U => new[] { "ú", "ü" },
LetterKey.VK_SLASH_ => new[] { "¿" },
LetterKey.VK_COMMA => new[] { "¿", "?", "¡", "!", "«", "»", "“", "”", "", "" },
_ => Array.Empty<string>(),
};