views:

83

answers:

2

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()
+1  A: 

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.

too much php
+6  A: 

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

okay zed
I have got to start reading the docs of my tools more.
chiggsy
++ thanks for this one
Eli Bendersky