allow users to decode unicode escaped texts#41
Conversation
|
This looks great, though I would expect the command to actually be |
|
I tested this using the text |
|
Oh, I see, it turns unicode characters into their escaped version – this is unfortunately a language-specific syntax (right now it's outputting in Python), but better than nothing. It's very similar to this package: https://packagecontrol.io/packages/Unicode%20Escape In the future it would be nice to detect the language and output the appropriate string, but like I said I think this works. Thanks! |
|
Available in 2.4.0 |
Decoding strings like \uXXXX to normal Unicode text.
See this question:
SO questopm