Sublime Forum

ST3: Super+P command for "Goto anything" doesn't work anymor

#1

Hi,

my short command for “Goto anything” in Mac OSX with Super+P has suddenly stopped working. I can still do Super+T though, but I have gotten used to the other combination. How do I track down the error, or check if any plugins has overwritten that key binding?

Best regards,

Peter

0 Likes

#2

In the console, enter “sublime.log_commands(True)”. When you hit super+p, it will display the running command. You can also utilize FindKeyConflicts to find specifically what plugin any interference is coming from. The former solution will display the command, but not the plugin (though you could probably figure it out anyways). You may also want to try “sublime.log_input(True)” to ensure the correct key strokes are reaching the editor.

0 Likes

#3

Thanks, using your command I found the cause of the problem. It was the plugin 2pdf that messed up. I probably installed that by accident using the Package Control and the plugin doesn’t seem to work with ST3. After uninstalling it, the super+p command work as it should again.

0 Likes