|
From: David C. <dc...@us...> - 2005-07-28 11:57:25
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31199 Modified Files: plugin.xml plugin.properties Log Message: Create commands for launch short cuts so keys could be bound to them. Configured default key bindings. Minor changes to labels for shortcuts. Index: plugin.properties =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.ui/plugin.properties,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** plugin.properties 7 Mar 2005 20:52:43 -0000 1.15 --- plugin.properties 28 Jul 2005 11:57:16 -0000 1.16 *************** *** 19,24 **** --- 19,26 ---- ContextualRunRubyApplication.label=Run Ruby Application ContextualDebugRubyApplication.label=Debug Ruby Application + RubyApplicationShortcut.label=Ruby Application cheatsheet.webservices.name=RDT Introduction cheatsheet.webservices.desc=Ruby Development Tools (RDT) Introduction + Index: plugin.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.ui/plugin.xml,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** plugin.xml 12 Jul 2005 22:11:59 -0000 1.42 --- plugin.xml 28 Jul 2005 11:57:15 -0000 1.43 *************** *** 68,84 **** </extension> <extension - point="org.eclipse.debug.ui.launchShortcuts"> - <shortcut - label="%LaunchShortcut.Ruby.label" - icon="icons/full/ctool16/run_ruby.gif" - class="org.rubypeople.rdt.internal.debug.ui.launcher.RubyApplicationShortcut" - modes="run, debug" - id="org.rubypeople.rdt.debug.ui.applicationshortcut.ruby"> - <perspective - id="org.eclipse.debug.ui.DebugPerspective"> - </perspective> - </shortcut> - </extension> - <extension point="org.eclipse.ui.editorActions"> <editorContribution --- 68,71 ---- *************** *** 275,283 **** </enablement> <contextLabel ! label="%ContextualRunRubyApplication.label" mode="run"> </contextLabel> <contextLabel ! label="%ContextualDebugRubyApplication.label" mode="debug"> </contextLabel> --- 262,270 ---- </enablement> <contextLabel ! label="%LaunchShortcut.Ruby.label" mode="run"> </contextLabel> <contextLabel ! label="%LaunchShortcut.Ruby.label" mode="debug"> </contextLabel> *************** *** 287,291 **** --- 274,314 ---- </perspective> </shortcut> + <shortcut + label="%LaunchShortcut.Ruby.label" + icon="icons/full/ctool16/run_ruby.gif" + class="org.rubypeople.rdt.internal.debug.ui.launcher.RubyApplicationShortcut" + modes="run, debug" + id="org.rubypeople.rdt.debug.ui.applicationshortcut.ruby"> + <perspective + id="org.eclipse.debug.ui.DebugPerspective"> + </perspective> + </shortcut> </extension> + <extension + point="org.eclipse.ui.commands"> + <command + name="%ContextualRunRubyApplication.label" + description="%ContextualRunRubyApplication.label" + categoryId="org.eclipse.debug.ui.category.run" + id="org.rubypeople.rdt.debug.ui.RubyShortcut.run"> + </command> + <command + name="%ContextualDebugRubyApplication.label" + description="%ContextualDebugRubyApplication.label" + categoryId="org.eclipse.debug.ui.category.run" + id="org.rubypeople.rdt.debug.ui.RubyShortcut.debug"> + </command> + </extension> + <extension point="org.eclipse.ui.bindings"> + <key + sequence="M3+M2+D R" + commandId="org.rubypeople.rdt.debug.ui.RubyShortcut.debug" + schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/> + <key + sequence="M3+M2+X R" + commandId="org.rubypeople.rdt.debug.ui.RubyShortcut.run" + schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/> + </extension> + <extension point="org.eclipse.ui.cheatsheets.cheatSheetContent"> |