Patch 7.3.560 Problem: Get an error for a locked argument in extend(). Solution: Initialize the lock flag for a dictionary. (Yukihiro Nakadaira) Files:...
65555
Bram Moolenaar
Bram@...
Jun 20, 2012 12:27 pm
Patch 7.3.561 Problem: Using refresh: always in a complete function breaks the "." command. (Val Markovic) Solution: Add match leader to the redo buffer....
65556
Yukihiro Nakadaira
yukihiro.nakadaira@...
Jun 20, 2012 12:40 pm
... This problem was reported by mattn on April 18. And it was not listed in the todo list. https://groups.google.com/d/msg/vim_dev/xRdOvRDM3-Y/fhlb--KfkTUJ ...
65557
Yukihiro Nakadaira
yukihiro.nakadaira@...
Jun 20, 2012 12:55 pm
... I can reproduce it. Workaround is :set guioptions+=l, :set guioptions-=L, :set guioptions+=r or :set guioptions-=R. When splitting window vertically, Vim...
65558
Taylor Hedberg
tmhedberg@...
Jun 20, 2012 1:14 pm
... I cannot reproduce this with Vim 7.3.556 on Linux....
65559
Lomig Enfroy
dunwael@...
Jun 20, 2012 1:31 pm
... That's what I did finally,after fixing my first mistake. And many thanks again for you and Thomas, maintainers are not thanked enough for their hard...
65560
Yue Wu
vanopen@...
Jun 20, 2012 1:32 pm
On Wed, 20 Jun 2012 17:55:16 +0800, Bram Moolenaar <Bram@...> ... I'm runing gvim on windows xp sp3. To reproduce: gvim.exe -u NONE ... it will show...
65561
Bram Moolenaar
Bram@...
Jun 20, 2012 1:49 pm
Patch 7.3.562 Problem: ":profdel" should not work when the +profile feature is disabled. Solution: Call ex_ni(). (Yasuhiro Matsumoto) Files:...
65562
Tony Mechelynck
antoine.mechelynck@...
Jun 20, 2012 2:29 pm
... [...] Trying to compile Vim with TINY features: link.sh: $LINK_AS_NEEDED set to 'yes': invoking linker directly. gcc -L/usr/local/lib -Wl,--as-needed...
65563
Nick Shyrokovskiy
nshyrokovskiy@...
Jun 20, 2012 3:02 pm
Please consider this patch. It adds recognition of one line gcc note of undeclared identifier to 'errorformat39;. -- You received this message from the "vim_dev"...
65564
Ben Fritz
fritzophrenic@...
Jun 20, 2012 3:21 pm
... Are you sure? gvim -N -u NONE -i NONE ... shell returned 255 line becomes: 'moretest""' is not recognized as an internal or external command, operable...
65565
Bram Moolenaar
Bram@...
Jun 20, 2012 3:32 pm
... I'll fix it. -- hundred-and-one symptoms of being an internet addict: 43. You tell the kids they can't use the computer because "Daddy39;s got work to do"...
65566
Bram Moolenaar
Bram@...
Jun 20, 2012 3:32 pm
... I'll include it, thanks. -- hundred-and-one symptoms of being an internet addict: 44. Your friends no longer send you e-mail...they just log on to your IRC...
65567
vim@...
Jun 20, 2012 3:41 pm
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 65 by inkar...@...: Auto-wrap inside comments with numbered list is broken...
65568
Bram Moolenaar
Bram@...
Jun 20, 2012 3:56 pm
Patch 7.3.564 (after 7.3.559) Problem: Warning for pointer conversion. Solution: Add type cast. Files: src/misc1.c ... *************** *** 4537,4543...
65569
Gary Johnson
garyjohn@...
Jun 20, 2012 4:05 pm
... By the time I got around to trying this, Bram had released Dominique's patch as 7.3.558, so I updated to the latest at the time, 7.3.562, and that seems to...
65570
Christian Brabandt
cblists@...
Jun 20, 2012 4:06 pm
... Yes, I am pretty sure: gvim -u NONE -I NONE -N ... Calling shell to execute: ""echo "test|moretest"" <C:\DOCUME~1\de91485492;LOCALS~1 Shell returned 255. ...
Hello, This patch breaks the dot register for my autocompletion plugin when 'refresh: always' is NOT set. Once the popup menu shows up, any following character...
65573
Bram Moolenaar
Bram@...
Jun 20, 2012 4:40 pm
Patch 7.3.565 Problem: Can't generate proto file for Python 3. Solution: Add PYTHON3_CFLAGS to LINT_CFLAGS. Files: src/Makefile ... *************** ...
65574
Ben Fritz
fritzophrenic@...
Jun 20, 2012 4:41 pm
... I know it's not currently off by default. But filtering to a command with a '|' included "just works" if shelltemp IS off. I'm saying the fix to the...
65575
Ben Fritz
fritzophrenic@...
Jun 20, 2012 5:02 pm
... Thanks for that, I didn't know about getting the command passed to the shell with 'verbose39;. That might be useful to mention in :help 'verbose39; :-) I note...
65576
Christian Brabandt
cblists@...
Jun 20, 2012 5:40 pm
Hi Raymond! ... So only add to the redo buffer, when refresh:always is set, right? diff --git a/src/edit.c b/src/edit.c ... +++ b/src/edit.c @@ -3467,13...
65577
Bram Moolenaar
Bram@...
Jun 20, 2012 6:21 pm
... When I include this patch (and fix a few compiler warnings and other problems), test 86 crashes. Try running the test under valgrind and there are lots of...
65578
Raymond Ko
raymond.w.ko@...
Jun 20, 2012 6:27 pm
... I just tested this on both my testcase and plugin and it seems to work fine. Someone should probably check with Val Markovic <val@...> to make sure...
65579
Tor Perkins
vim-dev@...
Jun 20, 2012 7:16 pm
... First, my apologies for some improperly bounced emails. Second, Dominique's patch is a good one! The '+ 1' was there before 7.3.552 and it was present in...
65580
Bram Moolenaar
Bram@...
Jun 20, 2012 8:56 pm
... It would be good to know why this flag needs to be checked. Add a comment to explain. Insert mode completion has grown too complex... -- hundred-and-one...
65581
Bram Moolenaar
Bram@...
Jun 20, 2012 8:56 pm
Patch 7.3.566 (after 7.3.561) Problem: Redo after completion does not work correctly when refresh: always is not used. (Raymond Ko) Solution: Check the...
65582
Christian Brabandt
cblists@...
Jun 20, 2012 9:37 pm
... The bug was introduced with patch 7.3.552. The attached patch fixes it (test included). regards, Christian -- You received this message from the "vim_dev"...
65583
Val Markovic
val@...
Jun 20, 2012 10:43 pm
... I just built the latest version of Vim from trunk that has this patch and everything works from my end. Val -- You received this message from the "vim_dev"...