Hi, My vim seems to flicker on big terminals because the output buffer is limited to 2K. Outputting a full redraw of large screen needs much more characters (especially if it has lots of colors). Currently it is distributed to several writes (separated by several milliseconds on my slow machine). This causes that when I press Page Down for example I can see the black flicker in bottom part of the terminal.
I propose increasing this buffer to 64K. So in src/term.c: -# define OUT_SIZE 2047 +# define OUT_SIZE 65535 Thanks! Balazs -- 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