mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
@@ -149,11 +149,12 @@ namespace PowerAccent.Core
|
||||
LetterKey.VK_4 => new[] { "⅘" },
|
||||
LetterKey.VK_5 => new[] { "⅚", "⅝" },
|
||||
LetterKey.VK_7 => new[] { "⅞" },
|
||||
LetterKey.VK_A => new[] { "ȧ" },
|
||||
LetterKey.VK_8 => new[] { "∞" },
|
||||
LetterKey.VK_A => new[] { "ȧ", "∀" },
|
||||
LetterKey.VK_B => new[] { "ḃ" },
|
||||
LetterKey.VK_C => new[] { "ċ", "°C", "©", "ℂ" },
|
||||
LetterKey.VK_D => new[] { "ḍ", "ḋ" },
|
||||
LetterKey.VK_E => new[] { "∈" },
|
||||
LetterKey.VK_C => new[] { "ċ", "°C", "©", "ℂ", "∁" },
|
||||
LetterKey.VK_D => new[] { "ḍ", "ḋ", "∂" },
|
||||
LetterKey.VK_E => new[] { "∈", "∃", "∄", "∉" },
|
||||
LetterKey.VK_F => new[] { "ḟ", "°F" },
|
||||
LetterKey.VK_G => new[] { "ģ", "ǧ", "ġ", "ĝ", "ǥ" },
|
||||
LetterKey.VK_H => new[] { "ḣ", "ĥ", "ħ" },
|
||||
@@ -162,11 +163,11 @@ namespace PowerAccent.Core
|
||||
LetterKey.VK_L => new[] { "ļ", "₺" }, // ₺ is in VK_T for other languages, but not VK_L, so we add it here.
|
||||
LetterKey.VK_M => new[] { "ṁ" },
|
||||
LetterKey.VK_N => new[] { "ņ", "ṅ", "ⁿ", "ℕ" },
|
||||
LetterKey.VK_O => new[] { "ȯ" },
|
||||
LetterKey.VK_P => new[] { "ṗ", "℗" },
|
||||
LetterKey.VK_O => new[] { "ȯ", "∅" },
|
||||
LetterKey.VK_P => new[] { "ṗ", "℗", "∏" },
|
||||
LetterKey.VK_Q => new[] { "ℚ" },
|
||||
LetterKey.VK_R => new[] { "ṙ", "®", "ℝ" },
|
||||
LetterKey.VK_S => new[] { "ṡ", "\u00A7" },
|
||||
LetterKey.VK_S => new[] { "ṡ", "§", "∑" },
|
||||
LetterKey.VK_T => new[] { "ţ", "ṫ", "ŧ", "™" },
|
||||
LetterKey.VK_U => new[] { "ŭ" },
|
||||
LetterKey.VK_V => new[] { "V̇" },
|
||||
@@ -174,12 +175,13 @@ namespace PowerAccent.Core
|
||||
LetterKey.VK_X => new[] { "ẋ", "×" },
|
||||
LetterKey.VK_Y => new[] { "ẏ", "ꝡ" },
|
||||
LetterKey.VK_Z => new[] { "ʒ", "ǯ", "ℤ" },
|
||||
LetterKey.VK_COMMA => new[] { "∙", "₋", "⁻", "–" }, // – is in VK_MINUS for other languages, but not VK_COMMA, so we add it here.
|
||||
LetterKey.VK_COMMA => new[] { "∙", "₋", "⁻", "–", "√" }, // – is in VK_MINUS for other languages, but not VK_COMMA, so we add it here.
|
||||
LetterKey.VK_PERIOD => new[] { "\u0300", "\u0301", "\u0302", "\u0303", "\u0304", "\u0308", "\u030C" },
|
||||
LetterKey.VK_MINUS => new[] { "~", "‐", "‑", "‒", "—", "―", "⁓", "−", "⸺", "⸻" },
|
||||
LetterKey.VK_SLASH_ => new[] { "÷" },
|
||||
LetterKey.VK_DIVIDE_ => new[] { "÷" },
|
||||
LetterKey.VK_MINUS => new[] { "~", "‐", "‑", "‒", "—", "―", "⁓", "−", "⸺", "⸻", "∓" },
|
||||
LetterKey.VK_SLASH_ => new[] { "÷", "√" },
|
||||
LetterKey.VK_DIVIDE_ => new[] { "÷", "√" },
|
||||
LetterKey.VK_MULTIPLY_ => new[] { "×", "⋅" },
|
||||
LetterKey.VK_PLUS => new[] { "≤", "≥", "≠", "≈", "≙", "⊕", "⊗", "∓", "≅", "≡" },
|
||||
_ => Array.Empty<string>(),
|
||||
};
|
||||
}
|
||||
|
||||
@@ -100,6 +100,7 @@ namespace winrt::PowerToys::PowerAccentKeyboardService::implementation
|
||||
LetterKey::VK_X,
|
||||
LetterKey::VK_Y,
|
||||
LetterKey::VK_Z,
|
||||
LetterKey::VK_PLUS,
|
||||
LetterKey::VK_COMMA,
|
||||
LetterKey::VK_PERIOD,
|
||||
LetterKey::VK_MINUS,
|
||||
|
||||
@@ -41,6 +41,7 @@ namespace PowerToys
|
||||
VK_X = 0x58,
|
||||
VK_Y = 0x59,
|
||||
VK_Z = 0x5A,
|
||||
VK_PLUS = 0xBB,
|
||||
VK_COMMA = 0xBC,
|
||||
VK_PERIOD = 0xBE,
|
||||
VK_MINUS = 0xBD,
|
||||
|
||||
Reference in New Issue
Block a user