From PyDev 2.5.0 onwards, the interactive console may be connected to the variables/expressions view (as if it was a debug process... but without breakpoints).
To enable that feature, go to window > preferences > PyDev > Interactive Console and check 'Connect console to Variables Debug View?'.
With that setting in place, when a new interactive console is created and the debug perspective is shown, it's possible to see the variables available in the console through the variables view and even add expressions to be resolved in the expressions view.
Note: From PyDev 2.2.2 onwards, if IPython (0.10 or 0.11) is found in the PYTHONPATH,
PyDev will use it as the backend for the console.
To use it, do Ctrl+Alt+Enter (while in the PyDev editor) to:
Alternatively, it can be initialized from the console view from the dropdown for a new console
(rightmost corner icon in the console view)
Choose the console type – this will determine the PYTHONPATH and the interpreter that will be used in the console:
Code completion can be activated with Ctrl+Space (or the default keybinding in the target installation). All the features available for code completion in the editor are also available in the console (and they're controlled from the same place).
Ctrl+1 can be used to make an assign to a variable
Hovering over some element in the console shows docstrings (or other suitable description if not available)
Page up shows the history (multiple lines may be selected to be re-executed and the field can be used to filter suitable lines – with wildcards)
Hyperlinks are linked in tracebacks
The color, initial commands and vm args for jython can be configured in window > preferences > PyDev > interactive console
Other actions/features available: