[Pydev-cvs] org.python.pydev plugin.xml,1.20,1.21
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2004-07-16 15:38:20
|
Update of /cvsroot/pydev/org.python.pydev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5027 Modified Files: plugin.xml Log Message: Added backspace action. Index: plugin.xml =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/plugin.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** plugin.xml 2 Jul 2004 02:50:37 -0000 1.20 --- plugin.xml 16 Jul 2004 15:38:11 -0000 1.21 *************** *** 113,116 **** --- 113,123 ---- </action> <action + definitionId="org.python.pydev.editor.actions.pybackspace" + label="Python Backspace (considers indentation)" + class="org.python.pydev.editor.actions.PyBackspace" + menubarPath="org.python.pydev.editor.actions.sourceMenu/editGroup" + id="org.python.pydev.editor.actions.pybackspace"> + </action> + <action definitionId="org.python.pydev.editor.actions.convertSpaceToTab" label="Convert space-tabs to tabs" *************** *** 275,279 **** id="org.python.pydev.ui.category.source"> </category> ! <!-- command: next method / class--> <command name="First char" --- 282,286 ---- id="org.python.pydev.ui.category.source"> </category> ! <!-- command: goto first char--> <command name="First char" *************** *** 288,291 **** --- 295,311 ---- configuration="org.eclipse.ui.defaultAcceleratorConfiguration"> </keyBinding> + <!-- command: backspace considering indentation--> + <command + name="Python Backspace (with indentation)" + description="Backspace considering indentation for Python." + category="org.python.pydev.ui.category.source" + id="org.python.pydev.editor.actions.pybackspace"> + </command> + <keyBinding + string="Backspace" + scope="org.python.pydev.ui.editor.scope" + command="org.python.pydev.editor.actions.pybackspace" + configuration="org.eclipse.ui.defaultAcceleratorConfiguration"> + </keyBinding> <!-- command: next method / class--> <command |