|
From: Christopher W. <caw...@us...> - 2006-02-24 20:02:50
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32204 Modified Files: plugin.properties plugin.xml Log Message: add command and keybinding for new "go to matching bracket" action Index: plugin.properties =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/plugin.properties,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** plugin.properties 10 Feb 2006 20:17:19 -0000 1.27 --- plugin.properties 24 Feb 2006 20:02:46 -0000 1.28 *************** *** 73,76 **** --- 73,79 ---- ActionDefinition.generateRdoc.description=Generate RDoc + ActionDefinition.gotoMatchingBracket.name= Go to Matching Bracket + ActionDefinition.gotoMatchingBracket.description= Moves the cursor to the matching bracket + scope.rubyEditor.name=Ruby Editor scope.rubyEditor.description=Ruby Editor Index: plugin.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/plugin.xml,v retrieving revision 1.73 retrieving revision 1.74 diff -C2 -d -r1.73 -r1.74 *** plugin.xml 18 Feb 2006 16:53:51 -0000 1.73 --- plugin.xml 24 Feb 2006 20:02:46 -0000 1.74 *************** *** 228,231 **** --- 228,236 ---- platform="carbon"> </key> + <key + sequence="M1+M2+P" + contextId="org.rubypeople.rdt.ui.rubyEditorScope" + commandId="org.rubypeople.rdt.ui.edit.text.ruby.goto.matching.bracket" + schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/> </extension> <extension point="org.eclipse.ui.commands"> *************** *** 302,305 **** --- 307,316 ---- name="%ActionDefinition.generateRdoc.name"> </command> + <command + categoryId="org.eclipse.ui.category.navigate" + description="%ActionDefinition.gotoMatchingBracket.description" + id="org.rubypeople.rdt.ui.edit.text.ruby.goto.matching.bracket" + name="%ActionDefinition.gotoMatchingBracket.name"> + </command> </extension> <extension |