PyDev Remote Debugger and Tab Completion in Eclipse

筅森魡賤 提交于 2019-12-11 06:43:22

问题


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?"



来源:https://stackoverflow.com/questions/16549574/pydev-remote-debugger-and-tab-completion-in-eclipse

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!