Replies: 1 comment
-
|
Ah, thanks for reporting this! So far, the underlying table implementation just did a naive byte count, which of course yields incorrect results for multibyte Unicode strings. #324 fixes this issue. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
If my tag include a multibyte character, when using the command
klog tags, the tags are not aligned properly.Assumme we have the file
test.klg:Running
klog tags test.klgwill produce the output:Here we can see that #a and #b are aligned, but row with the
ßis missing a spacing character.If instead of using a
ß(two bytes) we use𒀀(four bytes) we get this output:Finally, we can have a little fun with this
This file:
… produces this output:
Beta Was this translation helpful? Give feedback.
All reactions