I use jedi-vim
for completion and it does the thing pretty well. But for some reason I have troubles with completion for parent objects.
For example:
class A:
variable = 1
class B(A):
# Won't find any pattern here, only __builtin__.vars
var # here I hit <C-space>
Is there any settings I should add in my .vimrc
or it's just how jedi works? I also dig some issue tracker and didn't find something useful.