PyDev Remote Debugger and Tab Completion in Eclips

2019-07-26 07:42发布

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?

enter image description here

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条回答
Fickle 薄情
2楼-- · 2019-07-26 07:59

Did you check

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

查看更多
登录 后发表回答