workaround console problem on Windows 7

2015-09-19 Fir de Conversatie Taro MURAOKA
Hi list and Bram. Continue from reported problem: https://groups.google.com/d/msg/vim_dev/G9KD895VTxw/ch5R5nqDBQAJ Problem: After 7.4.851, on Windows7, when using vim.exe with msys or msys2, conhost.exe (console window provider on Windows7) will freeze or crash. It can be reproduced by this l

Re: Patch 7.4.802

2015-09-19 Fir de Conversatie Rainer M. Canavan
> Hi Lucas! > > On Mi, 02 Sep 2015, Lucas Buchala wrote: > > On Tue, Jul 28, 2015 at 12:16 PM, Bram Moolenaar wrote: > > > > > Patch 7.4.802 > > > Problem: Using "A" in Visual mode while 'linebreak' is set is not tested. > > > Solution: Add a test for this, verifies the problem is fixed. (Ing

RE: [vim] Win32: Space bar with modifier key not working in gvim (#423)

2015-09-19 Fir de Conversatie dkotchan
Hi In the absence of other potential fixes, may I suggest dowloading the (rather fabulous) Autohotkey utility: http://www.autohotkey.com/ This is a windows utility that allows mapping keystrokes and key-chords to other keystrokes and/or custom system actions. It allows filtering so as to in

Re: [patch] coverity cid 1307838: wrong size argument (SIZEOF_MISMATCH)

2015-09-19 Fir de Conversatie Bram Moolenaar
Dominique wrote: > Attached patch fixes coverity defect cid 1307838: > a vim_memset was clearing only the first byte of a struct > instead of the full struct. The defect was harmless > anyway since the initialization is not really needed. > It's only there to pacify compilers or static analyzers.

[patch] coverity cid 1307838: wrong size argument (SIZEOF_MISMATCH)

2015-09-19 Fir de Conversatie Dominique Pellé
Hi Attached patch fixes coverity defect cid 1307838: a vim_memset was clearing only the first byte of a struct instead of the full struct. The defect was harmless anyway since the initialization is not really needed. It's only there to pacify compilers or static analyzers. Regards Dominique --