Hi After having some problems using omni-completion in python I have recently discovered Pydiction plugin: http://www.vim.org/scripts/script.php?script_id=850 Which uses dictionaries, I think this is another good way to get autocompletion because it doesn't relies on loading modules likes omni-completion. I am trying to integrate it as best as possible in my current setup, so I got some doubts: - There is the pydiction.py script which cretes dictionaries from python modules, is there anyway I can call to it, transparently i nthe background, every certain time to update a dictionary with all the .py files I have in my project, basically all the python files under the project root folder. - Also would be great to get the prototype of a function when you type it, for instance if I type: os.path.basename Would be great to have in the popup menu not only the function name but also the protptype: os.path.basename(path), so if I select the funcion in the menu I will get the whole protoype and then I only need to fill the needed parameters. I think the code_complete plugin (http://www.vim.org/scripts/script.php?script_id=1764) is already doing something similar, haven't tried it but seems it is only for C/C++.
So far these are my main troubles. Thanks -- Un saludo Best Regards Pablo Giménez -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
