如何使pydev显示内置python函数的文档?

如何使pydev显示内置python函数的文档?,python,eclipse,pydev,Python,Eclipse,Pydev,现在,对于内置函数,pydev只显示: list.append Found at: builtins 对于matplotlib中的函数,它显示: def figure Found at: matplotlib.pyplot def figure(num= # autoincrement if None, else integer from 1-N None, figsize= # defaults to rc figure.figsize None, dpi= # def

现在,对于内置函数,pydev只显示:

  list.append Found at: builtins
对于matplotlib中的函数,它显示:

def figure Found at: matplotlib.pyplot

def figure(num= # autoincrement if None, else integer from 1-N
    None, figsize= # defaults to rc figure.figsize
    None, dpi= # defaults to rc figure.dpi
    None, facecolor= # defaults to rc figure.facecolor
    None, edgecolor= # defaults to rc figure.edgecolor
    None, frameon=True, 
    FigureClass=Figure, **
    kwargs):
.....................

我已经在我的linux系统中安装了python文档包,我可以做些什么使它显示内置python函数的详细函数提示?

也欢迎任何其他具有nice文档集成的IDE/Editor解决方案建议。