You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I interpret that as that the original clink.prompt.value is encoded UTF8 (ü as utf8 codepoints is c3 bc, which then gets interpreted as ü in windows-1252) and get_cwd() returns windows-1252.
Is there any way to get (and set) unicode in both sides?
The text was updated successfully, but these errors were encountered:
This should resolve issue 415 in mridgers/clink (for almost all of the
lua functions, not just the one specifically mentioned there).
[#415](mridgers/clink#415)
Different encodings in different lua functions
This is from cmderdev/cmder#1054
Basically I want to set
clink.prompt.value = clink.get_cwd()
.creating a folder called
c:\temp\ü
and changing to it, this results in the following file (ANSI encoded):I interpret that as that the original
clink.prompt.value
is encoded UTF8 (ü as utf8 codepoints isc3 bc
, which then gets interpreted asü
inwindows-1252
) andget_cwd()
returnswindows-1252
.Is there any way to get (and set) unicode in both sides?
The text was updated successfully, but these errors were encountered: