[Pydev-cvs] org.python.pydev Changes.txt, 1.397, 1.398 plugin.xml, 1.206, 1.207
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-06-22 09:28:59
|
Update of /cvsroot/pydev/org.python.pydev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9722 Modified Files: Changes.txt plugin.xml Log Message: PyToggleComment: Created from patch: https://sourceforge.net/tracker/?func=detail&atid=577329&aid=1999389&group_id=85796 Index: Changes.txt =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/Changes.txt,v retrieving revision 1.397 retrieving revision 1.398 diff -C2 -d -r1.397 -r1.398 *** Changes.txt 19 Jun 2008 15:29:46 -0000 1.397 --- Changes.txt 21 Jun 2008 14:31:22 -0000 1.398 *************** *** 1,2 **** --- 1,9 ---- + after 1.3.18 + + Pydev + <ul> + <li><strong>Ctr+/</strong>: Changed to toggle comment (instead of only comment) -- patch from Christoph Pickl</li> + </ul> + after 1.3.17 Index: plugin.xml =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/plugin.xml,v retrieving revision 1.206 retrieving revision 1.207 diff -C2 -d -r1.206 -r1.207 *** plugin.xml 15 Jun 2008 00:45:56 -0000 1.206 --- plugin.xml 21 Jun 2008 14:31:22 -0000 1.207 *************** *** 332,335 **** --- 332,342 ---- </action> <action + definitionId="org.python.pydev.editor.actions.togglecomment" + label="Toggle Comment" + class="org.python.pydev.editor.actions.PyToggleComment" + menubarPath="org.python.pydev.editor.actions.sourceMenu/editGroup" + id="org.python.pydev.editor.actions.togglecomment"> + </action> + <action definitionId="org.python.pydev.editor.actions.removeBlockComment" label="Remove comment block" *************** *** 619,622 **** --- 626,636 ---- id="org.python.pydev.editor.actions.comment"> </command> + <!-- command: toggle comment--> + <command + name="Python Toggle Comment" + description="Toggles comments of python line/s (Adds/Removes # at beggining of the line)" + categoryId="org.python.pydev.ui.category.source" + id="org.python.pydev.editor.actions.togglecomment"> + </command> <!-- command: Go To Defition--> <command *************** *** 783,787 **** sequence="Ctrl+/" contextId="org.python.pydev.ui.editor.scope" ! commandId="org.python.pydev.editor.actions.comment" schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"> </key> --- 797,801 ---- sequence="Ctrl+/" contextId="org.python.pydev.ui.editor.scope" ! commandId="org.python.pydev.editor.actions.togglecomment" schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"> </key> |