PyDev Remote Debugger and Tab Completion in Eclips

2019-07-26 08:01发布

问题:

This might be a limitation of the PyDev debugger but would anyone know how to enable tab completion and history like in a plain Python shell in the Eclipse debug Console window?

Pressing tab or the arrow keys just jumps/moves the cursor. PyDev remote debugger is initialized as needed with following code:

from pydevsrc import pydevd;pydevd.settrace('<my ip>', stdoutToServer=True, stderrToServer=True, suspend=True)

回答1:

Did you check

Preferences -> PyDev -> Editor -> Code Completion -> "Use code completion on debug console sessions?"