Is there a way to make Eclipse + PyDev documentation like Python help ()?

I would like to force Eclipse to display Python help output in a popup instead of an entire function, i.e. Considering:

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

I would like the popup with code support to contain only "Function Description" and not "return 1"

+6
source share
1 answer

Try tagging "Show Docs"? in 'Window -> Preferences -> Pydev -> Editor -> Hover'.

+4
source

Source: https://habr.com/ru/post/894893/


All Articles