5

How do I display the function parameters help box when I'm in the middle of typing them? By looking at questions like this one, it seems that I have to hit either Ctrl+SPACE or Ctrl+Shift+SPACE, but neither of these seems to work. The parameters are displayed when I type the (, but then they disappear.

BTW, a related question: It seems that when I'm typing the name of a class the parameters box isn't displayed. I have to type .__init__ after the class name to see the help box. Is this like this or am I missing something?

4

2 回答 2

2

如果我将光标放在函数后面的括号之间,我的 PyDev (1.5.1.1258496115) 将自动完成函数参数:

my_func(| )+ Ctrl+ Space=my_func(param1, param2)

于 2010-01-11T01:56:20.443 回答
0

我遇到了一个奇怪的情况。当我输入以下代码时:

wx.SplitterWindow.__init__(|)

然后按ALT+\,什么都没有弹出。所以我继续输入se,然后按ALT+\

在此处输入图像描述

然后我逐字符删除se字符:

在此处输入图像描述

于 2013-07-04T02:51:48.950 回答