On Jun 19, 10:36 am, TheLonelyStar <[email protected]> wrote:
> Hi,
>
> Thanks for your reply! In :scriptnames I find:
>
> (my home)/.vim/ftplugin/python_calltips.vim
>
> which is the correct file. So it is loaded ...
> I am confused.
>

First, please bottom-post to this group as detailed here:
http://groups.google.com/group/vim_use/web/vim-information

Secondly, I had a look at the script you mentioned (script ID 1074)
and found this:

if ! has('python')
    echo "Error: Required vim compiled with +python"
    finish
endif

What is the output of :echo has('python') ? Apparently you cannot use
this plugin without python support compiled into your Vim.

Incidentally, the "echo" in the plugin code should be "echomsg"
instead so that it is available for later use with the :messages
command. I imagine you are hitting this code but the echo'd message is
being lost. I have cc'd the listed plugin maintainer.
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to