Yasuhiro Matsumoto wrote: > Ah, sorry. > > See first change in the patch that is in following link. > > https://groups.google.com/d/msg/vim_dev/RJvzyRk1lP0/q9tQUJx1jI0J > > diff -r 379a6398d462 src/eval.c > --- a/src/eval.c Wed Oct 26 23:48:21 2011 +0200 > +++ b/src/eval.c Thu Oct 27 20:30:32 2011 +0900 > @@ -21737,6 +21737,9 @@ > ++hi; > fp = HI2UF(hi); > > + if (fp->uf_flags & FC_DICT) > + return NULL; /* don't show dict functions */ > + > if (STRLEN(fp->uf_name) + 4 >= IOSIZE) > return fp->uf_name; /* prevents overflow */
Thanks, I'll put it in the todo list. -- hundred-and-one symptoms of being an internet addict: 101. U can read htis w/o ny porblm and cant figur eout Y its evn listd. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- You received this message from the "vim_dev" 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
