[Pydev-cvs] org.python.pydev plugin.xml,1.14,1.15
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2004-05-21 18:53:47
|
Update of /cvsroot/pydev/org.python.pydev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23376 Modified Files: plugin.xml Log Message: F3 now has the Ctrl+Click funtionality Index: plugin.xml =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/plugin.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** plugin.xml 7 May 2004 02:07:18 -0000 1.14 --- plugin.xml 21 May 2004 18:53:38 -0000 1.15 *************** *** 138,145 **** <action definitionId="org.python.pydev.editor.actions.navigation.previousMethod" ! label="Goto previous method or class" ! class="org.python.pydev.editor.actions.PyPreviousMethod" ! menubarPath="org.python.pydev.editor.actions.sourceMenu/addGroup" ! id="org.python.pydev.editor.actions.navigation.previousMethod"> </action> </editorContribution> --- 138,152 ---- <action definitionId="org.python.pydev.editor.actions.navigation.previousMethod" ! label= "Goto previous method or class" ! class= "org.python.pydev.editor.actions.PyPreviousMethod" ! menubarPath= "org.python.pydev.editor.actions.sourceMenu/addGroup" ! id= "org.python.pydev.editor.actions.navigation.previousMethod"> ! </action> ! <action ! definitionId="org.python.pydev.editor.actions.navigation.pyGoToDefinition" ! label= "Go to Definition" ! class= "org.python.pydev.editor.actions.PyGoToDefinition" ! menubarPath= "org.python.pydev.editor.actions.sourceMenu/addGroup" ! id= "org.python.pydev.editor.actions.navigation.pyGoToDefinition"> </action> </editorContribution> *************** *** 299,302 **** --- 306,322 ---- configuration="org.eclipse.ui.defaultAcceleratorConfiguration"> </keyBinding> + <!-- command: Go To Defition--> + <command + name="Python Go To Declaration" + description="Goes to the declaration of a python element" + category="org.python.pydev.ui.category.source" + id="org.python.pydev.editor.actions.navigation.pyGoToDefinition"> + </command> + <keyBinding + string="F3" + scope="org.python.pydev.ui.editor.scope" + command="org.python.pydev.editor.actions.navigation.pyGoToDefinition" + configuration="org.eclipse.ui.defaultAcceleratorConfiguration"> + </keyBinding> </extension> <!-- file type extensions for the team (CVS) --> |