Hello, I am using NetBeans while using python. In NetBeans, i have class like this:
class Test:
Var = 'Val'
In python i can access this Var variable with this (using Test class for ENUM):
print Test.Var
NetBens does not auto complete after dot(.). But whenever i instance Test class, it auto completes. Here is example.
test = Test()
print test.Var
So, how to write a plug-in to achieve this?