pydiction 0.5 review
Downloadpydiction is a special dictionary file of Python modules for use with vim's completion feature. Pydiction.py is a program that gener
|
|
pydiction is a special dictionary file of Python modules for use with vim's completion feature.
Pydiction.py is a program that generates the pydiction file and you can use it to add your
project's own modules to it.
When you supply a module name to pydiction.py it will generate the modules contents in 2 forms. The first form will be a list of the modules contents with the module name prefixed such as:
module.function1(
module.function1(
module.nonfunction1
module.nonfunction2
...
The first format is useful when you "import module" and are required to type the module prefix. The second form will be a list of just the module's method names without the module prefix:
function1(
function2(
nonfunction1
nonfunction2
...
The second form is useful when you "from module import functions".
pydiction.py Usage:
pydiction.py module1 module2..
pydiction 0.5 keywords