pydev remote debuging - code completion in interactive console?

♀尐吖头ヾ 提交于 2019-12-11 23:25:38

问题


I'm using a Pydev + Eclipse setup to develop a Python script for Autodesk Maya. In order to debug in Eclipse while the script is running in Maya, the standard setup is to use Pydev's remote debugging feature.
This is all good and everything is working well but with one exception - from within the interactive console during a debugging session, the code completion does not seem to work. And not just for Maya specific stuff either - for example if I run :

import sys<ENTER><ENTER>
print sys.

and then <CTRL + SPACE> at the console then I still get nothing. Code completion works fine in the normal code editor, and I have all relevant preferences enabled as far as I know("use code completion in debug sessions" and so on)...

There is a very similar post here, which didn't get resolved: PyDev Remote Debugger and Tab Completion in Eclipse

Is this a known issue for remote debugging with Pydev? (The commercially available WingIDE does have this feature, so it should be possible).

Thanks in advance for any help.

来源:https://stackoverflow.com/questions/19640359/pydev-remote-debuging-code-completion-in-interactive-console

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