SublimeStringEncode
SublimeStringEncode copied to clipboard
Converts characters from one "encoding" to another using a transformation (think HTML entities, not character encodings)
shouldn't convert string into unicode first when using b64decode and b64encode
for example(Chinese words): ```plain 百度 ``` command: `StringEncoding: Base64 Decode`, got: ``` XHU3NjdlXHU1ZWE2 ``` actually it's the result of `\u767e\u5ea6`, the right result is below: ``` 55m+5bqm ```
___Stack trace___ ``` reloading plugin StringEncode.string_encode Traceback (most recent call last): File "/opt/sublime_text/sublime_plugin.py", line 109, in reload_plugin m = importlib.import_module(modulename) File "./python3.3/importlib/__init__.py", line 90, in import_module File "", line 1584,...