Sublime Forum

prompt_select_project keyboard shortcut stopped working

#1

It still appears in my default keymap file as seen below and there isn’t anything else in there with the same binding.

	{ "keys": "ctrl+alt+p"], "command": "prompt_select_project" },

Any idea what might prevent it from working?

1 Like

#2

I was just posting about the same thing as this has been unbound in Sublime Text 3 build 3103.

Here’s a link reference for unofficial documentation on rebinding this key combo: http://docs.sublimetext.info/en/latest/reference/commands.html

It might be that the command was also renamed or, for some reason, completely removed.

0 Likes

#3

Try using this:
{ "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" }

1 Like

#4

From the changelog of build 3103 :

Windows: ctrl+alt+p is no longer bound by default, due to compatibility issues with some keyboard layouts

You can see the full version here.

0 Likes

#5

Thanks. That’s what I was looking for :).

0 Likes