[Pydev-cvs] org.python.pydev TODO.txt, 1.69, 1.70 Changes.txt, 1.392, 1.393
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-06-01 20:44:35
|
Update of /cvsroot/pydev/org.python.pydev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24261 Modified Files: TODO.txt Changes.txt Log Message: Organize imports can group from xxx imports. Index: TODO.txt =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/TODO.txt,v retrieving revision 1.69 retrieving revision 1.70 diff -C2 -d -r1.69 -r1.70 *** TODO.txt 17 May 2008 14:26:52 -0000 1.69 --- TODO.txt 1 Jun 2008 20:44:41 -0000 1.70 *************** *** 1,5 **** - Context insensitive completions: - - Don't bring imports for completions already in the document - - Make new imports from the same module use the same from xxx import yyy (when xxx is the same) - Organize imports should pass all the not defined vars and show the imports available for them - Organize imports should merge imports with the same 'xxx' in from xxx import yyy, bbb, etc --- 1,3 ---- Index: Changes.txt =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/Changes.txt,v retrieving revision 1.392 retrieving revision 1.393 diff -C2 -d -r1.392 -r1.393 *** Changes.txt 12 May 2008 15:36:35 -0000 1.392 --- Changes.txt 1 Jun 2008 20:44:41 -0000 1.393 *************** *** 1,2 **** --- 1,18 ---- + after 1.3.17 + + + Pydev Extensions + <ul> + <li><strong>Auto-import</strong>: Groups imports when possible.</li> + <li><strong>Auto-import</strong>: Doesn't bring imports for completions already in the document even if a parse is not successful.</li> + </ul> + + Pydev + <ul> + <li><strong>Executing external programs</strong>: Using Runtime.exec(String[] cmdargs) instead of the version accepting only a string.</li> + <li><strong>Organize Imports (ctrl+shift+O)</strong>: Imports can be grouped.</li> + </ul> + + after 1.3.16 |