Re: GVim flickers during page down/up scrolling - fonts renderer issue?

2012-02-05 Fir de Conversatie Mikey
On Feb 4, 2:33 pm, Christian Brabandt cbli...@256bit.org wrote: I am not sure why, but this patch seems to fix it. This potentially makes redrawing much slower, though. Strange... On my machine scrolling is now faster, not very much but indeed faster. But there is a problem with your patch.

Issue 52 in vim: [patch] filetype.vim fails to put conf filetype detection in filetype autocmd group

2012-02-05 Fir de Conversatie vim
Status: Accepted Owner: lech.lor...@gmail.com Labels: Type-Defect Priority-Medium New issue 52 by lech.lor...@gmail.com: [patch] filetype.vim fails to put conf filetype detection in filetype autocmd group http://code.google.com/p/vim/issues/detail?id=52 Create ftdetect/foo.vim in your .vim

Re: GVim flickers during page down/up scrolling - fonts renderer issue?

2012-02-05 Fir de Conversatie Marko Mahnič
On Feb 5, 3:01 pm, Mikey smieciar...@gmail.com wrote: I dont't have the foggiest idea about Vim's internals but I suspect it should be fixed on some higher level than your attempt. The flickering problem is usually solved by using double-buffering in an application: the application draws text

Re: GVim flickers during page down/up scrolling - fonts renderer issue?

2012-02-05 Fir de Conversatie Christian Brabandt
Hi Mikey! On So, 05 Feb 2012, Mikey wrote: On Feb 4, 2:33 pm, Christian Brabandt cbli...@256bit.org wrote: I am not sure why, but this patch seems to fix it. This potentially makes redrawing much slower, though. Strange... On my machine scrolling is now faster, not very much but

Patch 7.3.431

2012-02-05 Fir de Conversatie Bram Moolenaar
Patch 7.3.431 Problem:Fetching a key at a prompt may be confused by escape sequences. Especially when getting a prompt at a VimEnter autocommand. (Alex Efros) Solution: Properly handle escape sequences deleted by check_termcode(). Files: src/getchar.c,

Re: Issue 52 in vim: [patch] filetype.vim fails to put conf filetype detection in filetype autocmd group

2012-02-05 Fir de Conversatie vim
Updates: Status: Fixed Comment #1 on issue 52 by brammool...@gmail.com: [patch] filetype.vim fails to put conf filetype detection in filetype autocmd group http://code.google.com/p/vim/issues/detail?id=52 Thanks Lech. Fixed by patch 7.3.430. -- You received this message from the

Looking for a volunteer to fix find_file_in_path()

2012-02-05 Fir de Conversatie Bram Moolenaar
Fellow Vim developers, We have had quite a few bugs in the find_file_in_path() code. Now the problem is that when the current directory path contains ** then :cd fails, because it tries to expand ** instead of taking in literally. This code is complicated and includes a few hacks and

Patch 7.3.432

2012-02-05 Fir de Conversatie Bram Moolenaar
Patch 7.3.432 Problem:ACLs are not supported for ZFS or NFSv4 on Solaris. Solution: Add configure check and code. (Danek Duvall) Files: src/configure.in, src/auto/configure, src/config.h.in, src/os_unix.c *** ../vim-7.3.431/src/configure.in 2011-12-14

Patch 7.3.433

2012-02-05 Fir de Conversatie Bram Moolenaar
Patch 7.3.433 Problem:Using continued lines in a Vim script can be slow. Solution: Instead of reallocating for every line use a growarray. (Yasuhiro Matsumoto) Files: src/ex_cmds2.c *** ../vim-7.3.432/src/ex_cmds2.c 2012-02-04 21:57:44.0 +0100 ---

Re: RFC: Shipping parts of vimerl (Erlang addon for Vim) with Vim

2012-02-05 Fir de Conversatie Ricardo Catalinas Jiménez
On Tue, Jan 10, 2012 at 01:44:44PM +0100, Bram Moolenaar wrote: Ricardo Catalinas wrote: On Wed, Jan 04, 2012 at 02:35:54PM +0100, Bram Moolenaar wrote: Per Andersson wrote: I intend to package vimerl for Debian (current WIP). I suggest that ftplugin, indent, and syntax parts of

[patch] 'break' can not escape double for-loop in FOR_ALL_TAB_WINDOWS()

2012-02-05 Fir de Conversatie h_east
Hi Bram, FOR_ALL_TAB_WINDOWS() macro contain the double for-loop. So that, 'break' can not escape this. I checkd out all the places that using. I found an appropriate place in aucmd_restbuf(). (Not bug, but occurred wasted loop) I fixed this and added comment to FOR_ALL_TAB_WINDOWS(). Below is