Sublime Forum

How to trouble-shoot a package

#1

(I posted about this earlier, but I had multiple issues confused. For clarity I’m starting a new thread)

I’ve downloaded and installed a few packages from the wiki, some work and some don’t.

For example, SwapLines works fine, but ChooseAnyCommand does not - In the package directory, ChooseAnyCommand appears to be installed properly, but when I hit the bound key combination (“control+alt+shift+c,control+alt+shift+c”), nothing happens.

Is there any way of troubleshooting this? For example, can I check if the python script is being called? Can I see if it is outputting any errors?

Thanks

0 Likes

#2

Thanks, that was exactly what I needed. I found there is a simple typo in the keymap file:

<binding key="control+alt+shift+c,control+alt+shift+c" command="chooseAnyCommand" />

Should be

<binding key="ctrl+alt+shift+c,ctrl+alt+shift+c" command="chooseAnyCommand" />
0 Likes