|
From: David C. <dc...@us...> - 2005-07-30 11:38:51
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7876 Modified Files: plugin.properties plugin.xml Log Message: Changed default key bindings for Comment, Uncomment and ToggleComment to be consistent with JDT. Changed the keybinding category to "Ruby Source" so it doesn't clash with JDT. Index: plugin.properties =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/plugin.properties,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** plugin.properties 12 Mar 2005 16:52:12 -0000 1.18 --- plugin.properties 30 Jul 2005 11:38:43 -0000 1.19 *************** *** 42,46 **** ToggleCommentAction.label=&Toggle Comment@Ctrl+Shift+C ! category.source.name=Source category.source.description= Ruby Source Actions --- 42,46 ---- ToggleCommentAction.label=&Toggle Comment@Ctrl+Shift+C ! category.source.name=Ruby Source category.source.description= Ruby Source Actions Index: plugin.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/plugin.xml,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** plugin.xml 22 Jul 2005 03:45:50 -0000 1.56 --- plugin.xml 30 Jul 2005 11:38:43 -0000 1.57 *************** *** 200,204 **** </command> <keyBinding ! string="Ctrl+Shift+f" scope="org.rubypeople.rdt.ui.rubyEditorScope" command="org.rubypeople.rdt.ui.edit.text.ruby.format" --- 200,204 ---- </command> <keyBinding ! keySequence="M1+M2+F" scope="org.rubypeople.rdt.ui.rubyEditorScope" command="org.rubypeople.rdt.ui.edit.text.ruby.format" *************** *** 212,216 **** </command> <keyBinding - string="Ctrl+/" scope="org.rubypeople.rdt.ui.rubyEditorScope" command="org.rubypeople.rdt.ui.edit.text.ruby.comment" --- 212,215 ---- *************** *** 224,228 **** </command> <keyBinding - string="Ctrl+\" scope="org.rubypeople.rdt.ui.rubyEditorScope" command="org.rubypeople.rdt.ui.edit.text.ruby.uncomment" --- 223,226 ---- *************** *** 236,240 **** </command> <keyBinding ! string="Ctrl+Shift+C" scope="org.rubypeople.rdt.ui.rubyEditorScope" command="org.rubypeople.rdt.ui.edit.text.ruby.toggle.comment" --- 234,244 ---- </command> <keyBinding ! keySequence="M1+/" ! scope="org.rubypeople.rdt.ui.rubyEditorScope" ! command="org.rubypeople.rdt.ui.edit.text.ruby.toggle.comment" ! configuration="org.eclipse.ui.defaultAcceleratorConfiguration"> ! </keyBinding> ! <keyBinding ! keySequence="M1+M2+C" scope="org.rubypeople.rdt.ui.rubyEditorScope" command="org.rubypeople.rdt.ui.edit.text.ruby.toggle.comment" *************** *** 248,252 **** </command> <keyBinding ! string="Ctrl+Space" scope="org.rubypeople.rdt.ui.rubyEditorScope" command="org.rubypeople.rdt.ui.edit.text.ruby.content.assist.proposals" --- 252,256 ---- </command> <keyBinding ! keySequence="M1+SPACE" scope="org.rubypeople.rdt.ui.rubyEditorScope" command="org.rubypeople.rdt.ui.edit.text.ruby.content.assist.proposals" |