How can I setup vim & pymongo autocomplete for the code below:
import pymongo
connection = pymongo.Connection()
collection = connection["msg"].posts
result = collection.<tab>
Autocomplete in general works but it doesn't seem to be contextual, it just shows everything.