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