[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.technology.subversive] [Bug ?] Subversive key bindings definition

Hello.

I'm integrating the Subversive plugin(s) in my RCP application (based on Eclipse Platform 3.4.2) and I wanted to disable the SVN key bindings defined in the "org.eclipse.team.svn.ui" plugin.

I used the "Binding Service" to obtain the "org.eclipse.team.svn.ui.keybindings.scheme" and to set it to undefined but it didn't work until I patched each of the key binding definitions in the plugin.xml file of "org.eclipse.team.svn.ui" plugin, like this :

   <key
         commandId="org.eclipse.team.svn.ui.command.SynchronizeCommand"
         schemeId="org.eclipse.team.svn.ui.keybindings.scheme"
         sequence="CTRL+ALT+S"/>

I simply used the schemeId that is defined in the same plugin.xml file to locate all the key bindings in this scheme, instead of the "org.eclipse.ui.defaultAcceleratorConfiguration" that was previously set.

Is this a potential bug in the definition of Subversive key bindings ?
Thank you for your help.
JM.D