views:

176

answers:

1

I'm using VIM with pythoncomplete. When I'm making a completion, the current window is splitted and calltips are shown in the upper pane. I hate that! Is there a way to prevent that behavior or at least limit the size of the upper pane automaticly?

+4  A: 

You need to do something like:

set completeopt-=preview

This will prevent the opening of the preview window.

sykora