pydiction 0.5 review

Download
by rbytes.net on

pydiction is a special dictionary file of Python modules for use with vim's completion feature. Pydiction.py is a program that gener

License: GPL (GNU General Public License)
File size: 0K
Developer: Ryan Kulla
0 stars award from rbytes.net

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 search tags