Skip python "import" statements in exuberant ctags

Question:

if I have two files

file a.py:

class A():
    pass

file b.py:

from a import A
b = A()

When I use ctags and press Ctrl+] in vim, it redirects me to import statement, not to class definition. In this code all is ok:

file a.py:

class A():
    pass

file b.py:

from a import *
b = A()

Answers:

I use a mapping similar to the following which allows me to choose when there are multiple matches for a given tag:

nnoremap <C-]> :execute 'tj' expand('<cword>')<CR>zv

Also, check the man page for ctags, you might find there is a way to disable this type of tagging.

Answered By: too much php

You can add the following line to your ~/.ctags file.

–python-kinds=-i

to have ctags skip indexing import statements. To see what else you can enable/disable:

ctags –list-kinds=python

Answered By: okay zed
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.