Sublime Text – how to figure out internal command name for key binding?

Hit Ctrl` (backtick) to open the console, then enter sublime.log_commands(True) to turn on command logging. Go through the menus and click your target, and command: insert_snippet {“name”: “Packages/XML/long-tag.sublime-snippet”} comes up. Enter the following into your Preferences -> Key Bindings – User file: { “keys”: [“ctrl+alt+shift+w”], “command”: “insert_snippet”, “args”: { “name”: “Packages/XML/long-tag.sublime-snippet” } } (changing the … Read more

Sublime Text 3 – Package Control : “No packages available for installation” error when trying to install packages through secure channel

Had the same issue today. Reinstalled package control: Deleted Package Control folder inside the Sublime Text 3 > Packages folder went to https://sublime.wbond.net/installation and executed the manual installation instructions there …namely Click the Preferences > Browse Packages… menu Browse up a folder and then into the Installed Packages/ folder Download Package Control.sublime-package and copy it … Read more