7

I would like to force Eclipse to show Python's help output in the popup instead of the whole function, i.e. given:

def myFunc(arg):
    '''Function description'''
    return 1

I would like the code assist popup to contain only "Function description" and not "return 1"

smci
  • 32,567
  • 20
  • 113
  • 146
zmk
  • 504
  • 6
  • 6
  • Have you read the Pydev and Eclipse documentation or source and figured out specifically what you would need to change? – smci Aug 13 '11 at 21:38

1 Answers1

4

Try ticking 'Show docstrings?' in 'Window -> Preferences -> Pydev -> Editor -> Hover'.

Stevoisiak
  • 23,794
  • 27
  • 122
  • 225
yuwang
  • 846
  • 11
  • 24