diff --git a/stdlib/REPL/src/latex_symbols.jl b/stdlib/REPL/src/latex_symbols.jl index 9391c9d702133..54e0e4c354de3 100644 --- a/stdlib/REPL/src/latex_symbols.jl +++ b/stdlib/REPL/src/latex_symbols.jl @@ -203,8 +203,10 @@ const latex_symbols = Dict( "\\^z" => "ᶻ", "\\^A" => "ᴬ", "\\^B" => "ᴮ", + "\\^C" => "ꟲ", "\\^D" => "ᴰ", "\\^E" => "ᴱ", + "\\^F" => "ꟳ", "\\^G" => "ᴳ", "\\^H" => "ᴴ", "\\^I" => "ᴵ", @@ -215,6 +217,7 @@ const latex_symbols = Dict( "\\^N" => "ᴺ", "\\^O" => "ᴼ", "\\^P" => "ᴾ", + "\\^Q" => "ꟴ", "\\^R" => "ᴿ", "\\^T" => "ᵀ", "\\^U" => "ᵁ", diff --git a/stdlib/REPL/test/replcompletions.jl b/stdlib/REPL/test/replcompletions.jl index 242721c7da75f..fedcff7e56d32 100644 --- a/stdlib/REPL/test/replcompletions.jl +++ b/stdlib/REPL/test/replcompletions.jl @@ -1523,7 +1523,8 @@ end @test "ⁿ" in test_complete("\\^n")[1] @test "ᵞ" in test_complete("\\^gamma")[1] @test "⁽¹²³⁾ⁿ𐞥" in test_complete("\\^(123)nq")[1] - @test isempty(test_complete("\\^(123)nQ")[1]) + @test "⁽¹²³⁾ⁿꟴ" in test_complete("\\^(123)nQ")[1] + @test isempty(test_complete("\\^(123)nX")[1]) @test "₍₁₂₃₎ₙ" in test_complete("\\_(123)n")[1] @test "ₙ" in test_complete("\\_n")[1] @test "ᵧ" in test_complete("\\_gamma")[1]