|
From: Christopher W. <caw...@us...> - 2006-05-05 21:46:09
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11583 Modified Files: plugin.properties plugin.xml Log Message: fix ticket #121 - complaints about surround with begin...rescue block command not being defined should be fixed Index: plugin.properties =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/plugin.properties,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** plugin.properties 23 Apr 2006 19:43:30 -0000 1.34 --- plugin.properties 5 May 2006 21:46:05 -0000 1.35 *************** *** 89,92 **** --- 89,95 ---- ActionDefinition.gotoMatchingBracket.description= Moves the cursor to the matching bracket + ActionDefinition.gotoMatchingBracket.name= Surround with begin/rescue Block + ActionDefinition.gotoMatchingBracket.description= Surround the selected text with a begin/rescue block + 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.82 retrieving revision 1.83 diff -C2 -d -r1.82 -r1.83 *** plugin.xml 21 Apr 2006 21:13:29 -0000 1.82 --- plugin.xml 5 May 2006 21:46:05 -0000 1.83 *************** *** 464,470 **** name="%ActionDefinition.toggleComment.name" description="%ActionDefinition.toggleComment.description" ! categoryId="org.eubypeople.rdt.ui.category.source" id="org.rubypeople.rdt.ui.edit.text.ruby.toggle.comment "> </command> </extension> <extension --- 464,476 ---- name="%ActionDefinition.toggleComment.name" description="%ActionDefinition.toggleComment.description" ! categoryId="org.rubypeople.rdt.ui.category.source" id="org.rubypeople.rdt.ui.edit.text.ruby.toggle.comment "> </command> + <command + name="%ActionDefinition.surroundWith.beginRescue.name" + description="%ActionDefinition.surroundWith.beginRescue.description" + categoryId="org.rubypeople.rdt.ui.category.source" + id="org.rubypeople.rdt.ui.edit.text.ruby.surround.with.begin.rescue"> + </command> </extension> <extension |