sublimetext-stringutilities
sublimetext-stringutilities copied to clipboard
Key binding
How can I convert chars to html entities using key combination?? e.g. Ctr + c
You can do the following:
- Go to "Menu->Preferences->Browse packages..."
- Find the directory of the interested package.
- Find file with ".sublime-commands" extension.
- Get command name from file.
- Use "Menu->Preferences->Key bindings" for add key binding.
Ex (StringUtilities):
[
{ "keys": ["ctrl+b"], "command": "convert_to_base64" },
{ "keys": ["ctrl+shift+b"], "command": "convert_from_base64" },
{ "keys": ["ctrl+u"], "command": "url_encode" },
{ "keys": ["ctrl+shift+u"], "command": "url_decode" }
]