can the custom tag files handle classes so it only autocompletes methods under the class, so if i type myclass. it woudl then list func1 func2 and func3 so if i declare test as an instance of myclass typing test. should also list the methods.
Can we currently do this ? and if we can whats the format for the tags file ?
myclass: def func1(): pass def func2(): pass def func3(): pass
test=myclass()