Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Key binding #49

Open
jsinhSolanki opened this issue Nov 13, 2018 · 1 comment
Open

Key binding #49

jsinhSolanki opened this issue Nov 13, 2018 · 1 comment

Comments

@jsinhSolanki
Copy link

How can I convert chars to html entities using key combination?? e.g. Ctr + c

@nikallass
Copy link

You can do the following:

  1. Go to "Menu->Preferences->Browse packages..."
  2. Find the directory of the interested package.
  3. Find file with ".sublime-commands" extension.
  4. Get command name from file.
  5. 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" }
 ]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants