The attached vimrc.vim file (when used as the .vimrc, with no
non-standard plugins), can reproduce the issue on the attached test.c
file with the attached tags file.

Open the test.c file, go to line 62 (return 3), and insert a new line
above it. Type foo=Fun<C-X><C-O> to get the completion menu. Then
press the down or up arrows to navigate the completion menu.

I'm not really sure why I am setting fillchars within my foldtext
function but that seems to be one necessary component in this config
at least.

-- 
-- 
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

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Attachment: vimrc.vim
Description: Binary data

int Func1(void)
{
  return 1;
}

int Func2(void)
{
  return 2;
}

int Func3(void)
{
  return 3;
}

int Func4(void)
{
  return 4;
}

int Func5(void)
{
  return 5;
}

int Func6(void)
{
  return 6;
}

int Func7(void)
{
  return 7;
}

int Func8(void)
{
  return 8;
}

int FuncCall(int a, int b, int c, int d, int e, int f, int g)
{
  int foo;
  if (a)
  {
    if (b)
    {
      if (c)
      {
        if (d)
        {
          return 1;
        }
        else if (e)
        {
          return 2;
        }
        else if (f)
        {
          if (g)
          {
            return 3;
          }
          else
          {
            return 4;
          }
        }
        else
        {
          return 5;
        }
      }
    }
  }
}

Attachment: tags
Description: Binary data

Reply via email to