Replies: 1 comment
-
nice find, I wasn't aware of the +hex numpad combos. Generally, I'm not really happy with altChar(). It's a crutch, but Windows doesn't offer much else.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I think it would be useful to be able to enter hexadecimal character codes in the
altchar
function, as described in the Wikipedia article here.Advantages:
Disadvantage: it only works for users that have applied the following registry modification.
When this is allowed, we can make definitions like
which can be copied from the Windows character map application or Unicode publications, in addition to
which requires a hexadecimal to decimal conversion.
I have tested this in practice with trivial changes in 2 lines of code in configUtils.cpp:
With this change I could enter the character of the example above in Notepad. Without, it was impossible.
Beta Was this translation helpful? Give feedback.
All reactions