Re: Vim crashes when completing arguments to an user defined command in the cmdline window

2008-01-18 Fir de Conversatie Dominique Pelle
On Jan 18, 2008 6:46 AM, Yegappan Lakshmanan [EMAIL PROTECTED] wrote: Hi all, I am observing that Vim crashes when trying to complete the arguments to an user defined command in the cmdline window. I see this with Vim 7.1.180. To reproduce this crash, use the following sample code:

Re: Bug? Session loading may scroll up needlessly high

2008-01-18 Fir de Conversatie Tony Mechelynck
Andy Wokula wrote: Andy Wokula schrieb: Tony Mechelynck schrieb: Tony Mechelynck schrieb: Session loading may scroll up needlessly high The cursor line is always scrolled to the top of the window (plus 'scrolloff' if set), regardless of whether there are additional lines (and how many

Re: Bug? Session loading may scroll up needlessly high

2008-01-18 Fir de Conversatie Andy Wokula
Andy Wokula schrieb: Tony Mechelynck schrieb: Tony Mechelynck schrieb: Session loading may scroll up needlessly high The cursor line is always scrolled to the top of the window (plus 'scrolloff' if set), regardless of whether there are additional lines (and how many of them) after it.

Re: .nb files are Mathematica notebooks

2008-01-18 Fir de Conversatie Bram Moolenaar
Szabolcs wrote: On Jan 17, 8:35 pm, Bram Moolenaar [EMAIL PROTECTED] wrote: I also see *.nb files listed as Nota Bene text files. I don't know what Nota Bene is, but perhaps the file contents can be checked to be something that looks like Mathematica? According to

Patch 7.1.234

2008-01-18 Fir de Conversatie Bram Moolenaar
Patch 7.1.234 Problem:When diff'ing three files the third one isn't displayed correctly. (Gary Johnson) Solution: Compute the size of diff blocks correctly when merging blocks. Compute filler lines correctly when scrolling. Files: src/diff.c ***

Patch 7.1.232

2008-01-18 Fir de Conversatie Bram Moolenaar
Patch 7.1.232 (after 7.1.207 and 7.1.211) Problem:Compiler warnings with MSVC. Solution: Add type casts. (Mike Williams) Files: src/ex_cmds2.c, src/netbeans.c *** ../vim-7.1.231/src/ex_cmds2.c Tue Jan 15 22:16:36 2008 --- src/ex_cmds2.c Tue Jan 15 20:41:28 2008

Patch 7.1.233

2008-01-18 Fir de Conversatie Bram Moolenaar
Patch 7.1.233 Problem:Crash when doing Insert mode completion for a user defined command. (Yegappan Lakshmanan) Solution: Don't use the non-existing command line. Files: src/ex_getln.c *** ../vim-7.1.232/src/ex_getln.c Fri Jan 4 15:16:57 2008 --- src/ex_getln.c

Re: Vim crashes when completing arguments to an user defined command in the cmdline window

2008-01-18 Fir de Conversatie Bram Moolenaar
Yegappan Lakshmanan wrote: I am observing that Vim crashes when trying to complete the arguments to an user defined command in the cmdline window. I see this with Vim 7.1.180. To reproduce this crash, use the following sample code: crash.vim

Bug in Insert mode completion in Win32 GUI

2008-01-18 Fir de Conversatie Erik Falor
I have found a bug in gvim on Win32 that has been around since 7.1.95. So far I have determined that it involves a custom 'completefunc' that calls the built-in Vim function system(). Furthermore, calls to complete_check() change the behavior of the bug. I have created a script which exhibits

Re: (possibly known) bug with visual block and searchreplace

2008-01-18 Fir de Conversatie Richard Hartmann
On Jan 17, 2008 6:53 PM, Yegappan Lakshmanan [EMAIL PROTECTED] wrote: 3) It is in the todo list: Ah, OK, thanks :) Richard --~--~-~--~~~---~--~~ You received this message from the vim_dev maillist. For more information, visit http://www.vim.org/maillist.php

Re: [Alpha/Gcc] compiler warning for Vim 7.1.230

2008-01-18 Fir de Conversatie Bram Moolenaar
Adri Verhoef wrote: Compilation of Vim 7.1.230 on an Alpha processor with Gcc yielded: gui_motif.c: In function 'find_replace_dialog_create': gui_motif.c:3816: warning: cast to pointer from integer of different size Installation went fine. The warning may not be exclusively tied to Vim

Patch 7.1.235

2008-01-18 Fir de Conversatie Bram Moolenaar
Patch 7.1.235 Problem:Pattern matching is slow when using a lot of simple patterns. Solution: Avoid allocating memory by not freeing it when it's not so much. (Alexei Alexandrov) Files: src/regexp.c *** ../vim-7.1.234/src/regexp.c Wed Jan 2 15:34:48 2008 ---