vote up 6 vote down star
5

I'm looking for a suite of plugins that can help me finally switch over to vim full-time.

Right now I'm using Komodo with some good success, but their vim bindings have enough little errors that I'm tired of it.

What I do love in Komodo, though, is the code completion. So, here's what I'm looking for (ordered by importance).

  • Code completion, meaning: the ability to code complete modules/functions/etc. in any module that's on the pythonpath, not just system modules. Bonus points for showing docstrings when completing.
  • Jump-to a class definition. I'm guessing CTAGS will do this, so how do you all manage automatically updating your tags files?
  • Project type management for managing buffers: ideally the ability to grep for a filename in a directory structure to open it. Bonus for showing an index of class definitions while a buffer is open.
  • Bzr integration. Not super important, since most of it I can just drop to the shell to do.
flag

47% accept rate

7 Answers

vote up 11 vote down check

You can find here some info http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/ about this.

It covers code completion, having a list of classes and functions in open files. I haven't got around to do a full configuration for vim, since I don't use Python primarily, but I have the same interests in transforming vim in a better Python IDE.

link|flag
vote up 2 vote down

For refactoring: ropevim

link|flag
vote up 1 vote down

That's a great link. My one nit is that I believe that omnicompletion in vim only works for system libraries (or at least it did when I tried to set it up last). Can anyone verify this?

link|flag
The 'path' option (vimdoc.sourceforge.net/htmldoc/…) lets you specify a search path... – andrew Sep 28 '08 at 0:36
1  
Adding my site-packages to the path doesn't do anything for omnicomplete -- nor does it help with modules/classes I'm currently working on. – andrew Oct 13 '08 at 22:05
vote up 1 vote down

Here is some info on Bazaar integration if you're interested:

https://launchpad.net/bzr-vim-commands

link|flag
vote up 1 vote down

Code completion: PySmell looks promising. It's work-in-progress, but alredy useful.

link|flag
vote up 1 vote down

I use Pydiction (http://www.vim.org/scripts/script.php?script_id=850) it's a plugin for vim that lets you Tab-complete python modules/methods/attributes/keywords, including 3rd party stuff like Pygame, wxPython, Twisted, and literally everything. It works more accurately than other things i've tried and it doesn't even require that python support be compiled into your Vim.

link|flag
vote up 0 vote down

I use pydoc.vim (I actually wrote it) a lot, try it and tell me what you think. Another one that I think is quite useful is the updated syntax file with all it's extensions that you can enable, which you can find here.

link|flag

Your Answer

Get an OpenID
or

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