I want to create tags (ctags 5.8) file for my classes in python.For functions, and class members defined outside the class definition omnicompletion works ok. However if I define data member in a constructor ( self.x=2 ) I cannot see the ctags completion ?
class A(object):
def __init__(self):
self.x = "whatever" # x will not seen in ctags/omnicompletion!!!
Am I doing sth wrong ? Why there is no omnicompletion (ctags file looks ok) ?
If I understood your problem right, you can always add attributes in the class definition:
This way everyone reading your code sees, which attributes (you are calling them "class members") a class has.
UPDATE: checked with
The resulting tags file looks like this:
As can be seen,
x
attribute has its own record.Also checked with Emacs by creating emacs-compatible tags file first:
(this created TAGS file)
Inside Emacs:
...and voila! Cursor is at
x = None
line.Also, your original snippet doesn't work. So my advice to initialize attribute in the class namespace is valid.