On Sun, January 22, 2012 10:12 pm, Mikey wrote:
> I use GVim ver. 7.3.154 with GTK2 GUI on Slackware 13.37. During page
> down/up scrolling with Ctrl-F/B keys, screen flickers. It is
> especially well seen when GVim is maximized and working with large
> files (for example /var/log/messages) where text fills entire screen
> (not only from top to bottom, but also from left to right). Launching
> GVim with '-u NONE - U NONE' changes nothing. For additional
> comparison I opened the same file with Emacs 23.3.1 and rendering was
> very smooth. Of course both editors use exactly the same font. Is
> there any chance that GVim will use equally efficient rendering
> technique as Emacs? I'm a visually impaired person and this problem
> has a great meaning for me. As far as I know Emacs uses libXft to
> render fonts. Maybe lack of libXft support in GVim is the core of the
> issue?
I don't remember, that any rendering issues have been fixed since the
release of 7.3 Try if scrolling using <C-E>/<C-U> works better, e.g.
fu! Scroll(up)
return ":\<C-U>exe \":norm! ". v:count1*winheight(0) . (a:up ?
'\<C-U>' : '\<C-E>')."\"\n"
endfu
nunmap <C-F>
nunmap <C-D>
nnoremap <expr> <C-F> Scroll(0)
nnoremap <expr> <C-D> Scroll(1)
regards,
Christian
--
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