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
The library punts on string encodings right now, since AFAIK there's no way to know a priori what encoding is being used, and just represents everything as bytes. I think the way you're supposed to get it is with info charset_internal and info charset_terminal, but it's not clear to me how you're supposed to use those without knowing what encoding they're in. Is everything actually just in UTF-8? We need to set up some non-UTF-8 WeeChat relays to test it out.
The CLI is currently written entirely assuming UTF-8. If non-UTF-8 commands or messages are possible, we should support those in the CLI. If everything is actually UTF-8, we should change the types in the library to represent that.
The text was updated successfully, but these errors were encountered:
The library punts on string encodings right now, since AFAIK there's no way to know a priori what encoding is being used, and just represents everything as bytes. I think the way you're supposed to get it is with
info charset_internal
andinfo charset_terminal
, but it's not clear to me how you're supposed to use those without knowing what encoding they're in. Is everything actually just in UTF-8? We need to set up some non-UTF-8 WeeChat relays to test it out.The CLI is currently written entirely assuming UTF-8. If non-UTF-8 commands or messages are possible, we should support those in the CLI. If everything is actually UTF-8, we should change the types in the library to represent that.
The text was updated successfully, but these errors were encountered: