Sublime Forum

Override plugin keybindings

#1

as title says…is it possible?
ty in advance

0 Likes

Zen Coding: Conflicting shortcuts
#2

Yes, by setting the one you want in your user key bindings.

0 Likes

#3

ty but doesn’t work…sadly this is very bad for me infact the key i want override keeps me from typing the closing curly brackets } XD

i’ve an italian keyboard and to type the } u use
alt_gr+shift++
or
ctrl+alt+shift++

but sublime sees my + as = so it’s all a mess XD

0 Likes

#4

bump :stuck_out_tongue:

0 Likes

#5

Hi,

As @quarnster points out, the keybidings you add to User/Default (Windows).sublime-keymap (or whatever you OS is) will override all other keybindings. If you’re having trouble figuring out how Sublime interprets your keystrokes and/or what commands it’s executing, run the following in the console:

sublime.log_input(True)
sublime.log_commands(True)

(You can use either or both, depending on what you’re trying to do)

[Source for these is still @quarnster: viewtopic.php?f=3&t=7787&p=32794&hilit=show+keys#p32794 ]

Hope this helps,
Alex

0 Likes