Let's consider the following example:
import math
class A(object):
def f(self):
pass
def g(self):
pass
From the symbols list, if I select the f
method:
A
, while I would have expected A.f
While, if, from the symbols list, I select the A
class:
unknown
, while I would have expected A
Let's suppose now that the staus bar returns the right name of the current function.
From the editor, if I select the g
method (could be its heading or its body):
f
), while I would have expected it to beA.g
At this point, I think that it would be relatively easy to:
A.g
)A.f
)A.g
)[*] In certain cases the staus bar returns the value unknown
, for instance if I select, from the editor, the import statement import math
. So it would be better to rephrase the last point in:
A.g
)I would really supply a pull request, but unfortunately I don't know C.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.