forked from colinta/SublimeStringEncode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExample.sublime-keymap
16 lines (16 loc) · 937 Bytes
/
Example.sublime-keymap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[
{ "keys": ["super+shift+7"], "command": "xml_entitize", "scope": "text.xml" },
{ "keys": ["super+ctrl+7"], "command": "xml_deentitize", "scope": "text.xml" },
{ "keys": ["super+shift+7"], "command": "html_entitize" },
{ "keys": ["super+ctrl+7"], "command": "html_deentitize" },
{ "keys": ["super+shift+8"], "command": "json_escape" },
{ "keys": ["super+ctrl+8"], "command": "json_unescape" },
{ "keys": ["super+shift+6"], "command": "base64_encode" },
{ "keys": ["super+ctrl+6"], "command": "base64_decode" },
{ "keys": ["super+shift+5"], "command": "url_encode" },
// { "keys": ["super+shift+5"], "command": "url_encode", "args": {"old_school": true} },
{ "keys": ["super+ctrl+5"], "command": "url_decode" },
{ "keys": ["ctrl+shift+r"], "command": "escape_regex" },
{ "keys": ["ctrl+shift+u"], "command": "unicode_escape" },
{ "keys": ["super+ctrl+3"], "command": "hex_dec" }
]