I am trying to use vim on my Python journey, based on this guide.
I think I have the same problem as a paid nerd but since they didn't find a solution I am posting again here.
For some reason I can't get omnicompletion to work in vim, with python. I have installed the fabulous R-plugin and built the tags list. So I get omnicompletion with R.
But not for Python. A few observations:
:echo &omnifunc
printspythoncomplete#Complete
.- the
.vim/doc/tags
file has R tags, but no python (but this is because python is supported by default right?) - If I do
import math
in my.py
file I can autocomplete eg.ma
tomath.
but no methods are found?
How can I proceed?