forked from colinta/SublimeStringEncode
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExample.sublime-keymap
More file actions
Latest commit
12 lines (12 loc) · 657 Bytes
/
Copy pathExample.sublime-keymap
File metadata and controls
12 lines (12 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
[
{ "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+6"], "command": "base64_encode" },
{ "keys": ["super+ctrl+6"], "command": "base64_decode" },
{ "keys": ["super+shift+5"], "command": "url_encode" },
{ "keys": ["super+ctrl+5"], "command": "url_decode" },
{ "keys": ["ctrl+shift+r"], "command": "escape_regex" },
{ "keys": ["super+ctrl+3"], "command": "hex_dec" }
]