I've searched around for an hour, both on Stack Overflow and elsewhere. Alas! Please help. Vim's omnicompletion just doesn't work.

  1. I have Vim 7.2 compiled with Python support.

  2. filetype plugin on is in my .vimrc.

  3. When a .py file is open, :echo &omnifunc prints pythoncomplete#Complete.

  4. I'm working with a large project and I have a tags file generated with exhuberant-ctags. It's in Vim's ctags path. I can test it by typing ^] on a symbol and I'm then taken to the symbols' definition.

  5. Update 1: All of my project's code is in the python-in-Vim's path. I can :python import myproject successfully.

Now, anywhere I try C-x C-o, all I get is:

-- Omni completion (^O^N^P) Pattern not found

What am I doing wrong?

Update 2: When I type C-x C-o C-n at the module-level, Vim displays a completion popup with a few module-level constants from other modules in my project. But it's only constants (symbols capital letters) and the completion still doesn't work anywhere else.

Update 3: I've found that C-x C-o at the top of the file starts some kind of omnicompletion, and completion for pprint. brings up the menu and quick-reference of everything in the pprint module. However, none of my own module's imports are being completed.

Update 4, one year later: I gave up and learned Emacs. I have been to the dark site, the mystical land of intrigue and spice, and I say to thee that I have found The Way.

link|improve this question

You might want to try this, if you haven't already: blog.dispatched.ch/2009/05/24/vim-as-python-ide – Johannes Charra Feb 6 '10 at 10:06
@jellybean -- Good link, thanks! I already used minibufexpl.vim and Taglist.vim, but the TODO listing thing would be a great addition. – a paid nerd Feb 12 '10 at 0:41
2  
Never found an answer to this :( – a paid nerd Mar 5 '11 at 18:40
Vim 7.3.45 omni completion for python worked out of the box with +python and filetype plugin on of course. – Sardathrion Feb 29 at 13:33
feedback

7 Answers

What module contains the symbol you are trying to complete? Is it in the python stdlib? Or is it a third-party module?

Make sure that the module/package is in the PYTHONPATH.

In Vim, do:

:python import sys
:python print sys.path

To add the module's directory:

:python sys.path.append("/path/to/directory/")
link|improve this answer
Good suggestions, thanks. These are symbols from my project's code. Yes, the path is in Vim's Python's path. I've updated the question description. – a paid nerd Jan 18 '10 at 22:15
feedback

Since you were prudent and made certain your code is reachable by the PYTHONPATH, per codeape's suggestion, is there a possibility that you are running into the import bug for Vim Python omni-complete? This bug still exists as of Vim 7.2.245.

Essentially, if any import statement fails in the file you are working in, regardless of whether it's wrapped in a Try-Except clause, it will completely break omni-completion. It should be fairly easy to check for this, since most imports occur at the very beginning of the file.

If you do decide that this bug is the cause of your troubles, your options include:

  • making sure that the modules you import are on the system path, not just the project files
  • commenting out any import statements that fail
  • fixing the bug
  • using ropevim as your completion method
  • using a different editor; Netbeans IDE has Python support, and the jVi plugin is rather good if you're a Vim addict like myself (don't let the 1990s look of the home page fool you)
link|improve this answer
I too have run into this issue of any import problem just trashing my omni-complete entirely. I think even "warnings" about a module having already been imported from a different location in the project will crash your vim session when you try to omni-complete it. – Bodhi Apr 8 at 18:46
Bodhi, have a look at ropevim. (See the link in my edited answer above.) – gotgenes Apr 9 at 13:47
feedback

Sounds like the questioner has long since gone to the dark side*, but for what it's worth I've just had this symptom, and in my case the cause was that a module I was using relied on Python 2.7 but my version of Vim was compiled with Python 2.5.

To diagnose I tried :python import mymodule, which failed with an error about importing a dependent module. Then :python import dependentmodule which failed with the next step in the chain. And so on & so on, until it failed trying to import a system module that was new since Python 2.7. Problem found.

To solve, I just did sudo port install vim +python27. But that's for OSX. YMMV.

(* I'm kidding. Emacs users are our friends. It's the people programming in Notepad we all have to save...)

link|improve this answer
This is one of the most promising solutions. Thanks! – a paid nerd Aug 1 '11 at 18:01
Interesting..I have a strong feeling I'm running into this too! I'm using MacVim (Macports build) with python support, and it's linked to (also Macports) Python 2.5 I'm working on a project that is Python 2.7 and I'm sure we import some 2.7-only modules. When mine fails on tab completing (Supertab plugin), it actually SEGV faults my vim session! I'm hoping reinstalling MacVim with python2.7 will solve it. Cheers! – Bodhi Mar 27 at 6:39
Felt a report back was worthwhile - my Supertab plugin and omnicompletion work much better now, but still do crash my macvim session sometimes :( It appears to be whenever there is something bad in the import sequence the completion is looking through (like a potential circular import for example). Things are looking up, anyway, thanks! – Bodhi Mar 27 at 7:17
feedback

Having updated to Fedora 16 (but still compiling vim from source), omni completion stopped working with the same message as above. I "fixed" it by re-maping the keys.

inoremap <C-space> <C-x><C-o>

in ~/.vimrc and now it works again.

link|improve this answer
feedback

Have you tried using <C_x><C-]> ?

link|improve this answer
feedback

c-x c-n works to get the list of members of an object.

link|improve this answer
feedback

I used supertab (http://www.vim.org/scripts/script.php?script_id=1643)

Since C-x C-o is a bit frustrating to use

in .vimrc:

let g:SuperTabDefaultCompletionType = "<c-x><c-o>"

then just use Tabb for omnicompletion

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.