Sublime Forum

Reset default key bidding

#1

Hi,

i changed prompt_select_project key bidding in User key biddings into

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

is there way how to reset default key bidding for ctrl+alt+p to do nothing?
In slovak keyboard right ALT + P stands for ', problem is that right ALT + P act like CTRL + ALT + P, so i cannot write '.

Thanks for answer.

0 Likes

#2

Add this to your “User Key Bindings”:

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

#3

[quote=“C0D312”]Add this to your “User Key Bindings”:

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

Thanks for answer. I already tried, but it’s not working.
What I need is completly unbind this keys as shortcut.

0 Likes

#4

You could just remove the keybinding from Default KeyBindings…

0 Likes

#5

Default keybinds get reset when updating though so it’ll need to be redone each time. Not ideal but doable.

If assigning an empty command to the keybind isn’t overwriting the default, you could try adding this to your User keybinds instead

{ "keys": "ctrl+alt+p"], "command": "insert", "args": {"characters": "'"} }

Since the slovak keyboard treats RALT + P the same as CTRL + ALT + P, this’ll achieve the desired goal.

0 Likes

#6

Yes, and also i’m sharing my settings via dropbox so i need share user settings.

[quote=“skaet”]

{ "keys": "ctrl+alt+p"], "command": "insert", "args": {"characters": "'"} }

Since the slovak keyboard treats RALT + P the same as CTRL + ALT + P, this’ll achieve the desired goal.[/quote]

Thanks, such easy solution :wink:

0 Likes