In PyDev, when cursor hovers function name, tooltip with docstring text appears.
Is there way to assign a hotkey on this event, for viewing docstrings using only keyboard?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As far as I know, there is no direct keyboard shortcut for this when working with PyDev. For JDT, CDT or PDT F2 should work, but it does not in PyDev.
However, as an alternative, you can hit CTRL+SPACE which brings up the content assist, which will show the documentation right next to it.
Btw: the hover tooltip does not show the docstring only, but the whole content of a method.
Here is how the content assist should look like:
pythonpydeveclipsekeyboard-shortcutsdocstring