[Pydev-cvs] org.python.pydev plugin.xml,1.34,1.35
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2004-09-14 17:42:54
|
Update of /cvsroot/pydev/org.python.pydev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9579 Modified Files: plugin.xml Log Message: Code completion improvements. Starting refactoring integration with bicycle repair man. Index: plugin.xml =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/plugin.xml,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** plugin.xml 25 Aug 2004 17:24:23 -0000 1.34 --- plugin.xml 14 Sep 2004 17:42:08 -0000 1.35 *************** *** 4,8 **** id="org.python.pydev" name="Pydev - Python Development Environment" ! version="0.5.9.1" provider-name="AleksTotic" class="org.python.pydev.plugin.PydevPlugin"> --- 4,8 ---- id="org.python.pydev" name="Pydev - Python Development Environment" ! version="0.5.9.4" provider-name="AleksTotic" class="org.python.pydev.plugin.PydevPlugin"> *************** *** 172,175 **** --- 172,182 ---- </action> <action + definitionId="org.python.pydev.editor.actions.pyReloadCodeCompletionModules" + label="Reload the modules used for code completion" + class="org.python.pydev.editor.actions.PyReloadCodeCompletionModules" + menubarPath="org.python.pydev.editor.actions.sourceMenu/addGroup" + id="org.python.pydev.editor.actions.pyReloadCodeCompletionModules"> + </action> + <action definitionId="org.python.pydev.editor.actions.navigation.nextMethod" label="Goto next method or class" *************** *** 406,409 **** --- 413,429 ---- configuration="org.eclipse.ui.defaultAcceleratorConfiguration"> </keyBinding> + <!-- command: reload modules --> + <command + name="Reload the code completion modules" + description="Creates a python comment block" + category="org.python.pydev.ui.category.source" + id="org.python.pydev.editor.actions.pyReloadCodeCompletionModules"> + </command> + <keyBinding + string="Ctrl+Shift+Space" + scope="org.python.pydev.ui.editor.scope" + command="org.python.pydev.editor.actions.pyReloadCodeCompletionModules" + configuration="org.eclipse.ui.defaultAcceleratorConfiguration"> + </keyBinding> <!-- command: block--> <command |