Sublime Forum

Command + P doesn't work anymore

#1

Hello,

Command + P doesn’t do anything anymore. Also the console stays completely empty when pressing command + p. It used to work just fine. Suddenly it’s completely not working

I tried:

  • restart sublime text 2
  • restart mac
  • reinstall sublime text 2

macosx 10.9.2

0 Likes

#2

Command + shift + p works just fine. So that’s strange.

0 Likes

#3

Well,
the console will remain empty if the key binding is just being stolen from another package, to see what actually st is doing when you hit ctrl+p, you should run sublime.log_commands(True) in the console to enable the command logging…

0 Likes

#4

Command + P doesn’t do anything anymore.

Same thing for me
I’ve used:
sublime.log_commands(True)
sublime.log_input(True)
and when I hit ctrl+p console is empty

0 Likes

#5

If you turn on input logging and pressing the key still doesn’t log anything, then something outside of Sublime is probably seeing the key and consuming it before Sublime gets a chance to see it (like your OS, some other application with a global key binding, etc).

There’s not a lot to be done about that from within Sublime because you can’t map keys that it can’t tell you’re pressing, so you would have to determine what’s stealing the key and disable it.

0 Likes

#7

thank you. I just changed key bindings for now from ctrl+p to alt+p.

0 Likes