[Pydev-cvs] org.python.pydev plugin.xml,1.22,1.23
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2004-07-20 16:11:57
|
Update of /cvsroot/pydev/org.python.pydev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30875 Modified Files: plugin.xml Log Message: Added action for Quick Outline. Index: plugin.xml =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/plugin.xml,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** plugin.xml 19 Jul 2004 19:57:18 -0000 1.22 --- plugin.xml 20 Jul 2004 16:11:48 -0000 1.23 *************** *** 203,206 **** --- 203,213 ---- id="org.python.pydev.editor.actions.navigation.pyUnCollapse"> </action> + <action + definitionId="org.python.pydev.editor.actions.pyShowOutline" + label="Show Quick Outline" + class="org.python.pydev.editor.actions.PyShowOutline" + menubarPath="org.python.pydev.editor.actions.sourceMenu/addGroup" + id="org.python.pydev.editor.actions.navigation.pyShowOutline"> + </action> </editorContribution> </extension> *************** *** 490,493 **** --- 497,513 ---- configuration="org.eclipse.ui.defaultAcceleratorConfiguration"> </keyBinding> + <!-- command: Show outline--> + <command + name="Python Show Outline" + description="Show Outline" + category="org.python.pydev.ui.category.source" + id="org.python.pydev.editor.actions.pyShowOutline"> + </command> + <keyBinding + string="Ctrl+O" + scope="org.python.pydev.ui.editor.scope" + command="org.python.pydev.editor.actions.pyShowOutline" + configuration="org.eclipse.ui.defaultAcceleratorConfiguration"> + </keyBinding> </extension> <!-- file type extensions for the team (CVS) --> |