Update of /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/hyperlink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4313/src/org/python/pydev/editor/hyperlink
Modified Files:
PythonHyperlink.java
Log Message:
Synching to latest changes:
Pydev
<ul>
<li><strong>Editor</strong>: Cursor settings no longer overridden</li>
<li><strong>Code-completion</strong>: If __all__ is defined with runtime elements (and not only in a single assign statement), it's ignored for code-completion purposes</li>
<li><strong>Debugger</strong>: Pythonpath the same in debug and regular modes (sys.path[0] is the same directory as the file run)</li>
<li><strong>Debugger</strong>: Persist choices done in the debugger when files from the debugger are not found</li>
<li><strong>Interpreter config</strong>: "email" automatically added to the "forced builtins"</li>
<li><strong>Parser</strong>: Correctly recognizing absolute import with 3 or more levels</li>
<li><strong>Syntax check</strong>: Option to do only on active editor</li>
</ul>
Also: tabs changed for spaces
Index: PythonHyperlink.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/hyperlink/PythonHyperlink.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** PythonHyperlink.java 31 Jul 2008 01:47:36 -0000 1.2
--- PythonHyperlink.java 28 Sep 2008 12:45:52 -0000 1.3
***************
*** 54,61 ****
IWorkbench workbench = PlatformUI.getWorkbench();
if(workbench != null){
! IWorkbenchWindow workbenchWindow = workbench.getActiveWorkbenchWindow();
! if(workbenchWindow != null){
! workbenchWindow.getActivePage().saveAllEditors(false);
! }
}
--- 54,61 ----
IWorkbench workbench = PlatformUI.getWorkbench();
if(workbench != null){
! IWorkbenchWindow workbenchWindow = workbench.getActiveWorkbenchWindow();
! if(workbenchWindow != null){
! workbenchWindow.getActivePage().saveAllEditors(false);
! }
}
|