Skip to content Skip to sidebar Skip to footer

Pycharm Docstrings Linking To Classes

IntelliJ IDEA allows for linking to other methods in Java document comments. This allows me to move the cursor over a symbol and jump to the definition using a keyboard shortcut, a

Solution 1:

I contacted support and it turns out it hasn't been implemented.

I have created a feature request on their issue tracker:

https://youtrack.jetbrains.com/issue/PY-14743

Update:

original feature request is marked as a duplicate of

https://youtrack.jetbrains.com/issue/PY-27635

State: In progress

Solution 2:

defdie_hard(self):
    """
    Throws a :class:`NakatomiPlazaError`.
    """raise NakatomiPlazaError('Yippee ki-yay')

Worked for me.

Post a Comment for "Pycharm Docstrings Linking To Classes"