Add proper minus sign, and change a few shortcuts to more sensible ones

This commit is contained in:
Veronica K. B. Olsen
2021-01-26 14:03:19 +01:00
parent 94c755a0e6
commit 09504508d9
5 changed files with 26 additions and 13 deletions
+2
View File
@@ -294,6 +294,7 @@ class nwUnicode:
U_FLOWER = "\u2055" # Flower punctuation mark
U_PERMIL = "\u2030" # Per mille sign
U_DEGREE = "\u00b0" # Degree symbol
U_MINUS = "\u2212" # Minus sign
U_TIMES = "\u00d7" # Multiplaction sign
U_DIVIDE = "\u00f7" # Division sign
@@ -356,6 +357,7 @@ class nwUnicode:
H_FLOWER = "⁕"
H_PERMIL = "‰"
H_DEGREE = "°"
H_MINUS = "−"
H_TIMES = "×"
H_DIVIDE = "÷"