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.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Check out Pydiction for vim. Although I have not tried it with third party modules, the documentation says it should work:

'Pydiction can complete Python's keywords, built-in functions, and string literals, as well as standard, custom and third-party package and module names and their attributes and methods. It can also complete fully-qualified names such as "module.submodule.method", as well as non-fully qualified names such as simply "method".'

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.