+correct vim group. ... -- 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...
67503
Tony Mechelynck
antoine.mechelynck@...
Dec 11, 2012 10:54 pm
... The page mentions an interview with a Dutch newspaper: ...
67504
vim@...
Dec 12, 2012 12:56 am
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 99 by m...@...: Feature: Extended regular expressions ...
67505
Bram Moolenaar
Bram@...
Dec 12, 2012 11:44 am
... I suppose they deleted this old article. Oh, it's still available, but you need to login: ...
67506
Sergey Khorev
sergey.khorev@...
Dec 12, 2012 12:02 pm
... I have no access to a Mac so will have to guess. What versions of Vim and Racket do you use? Also latest update to the mzscheme interface did not make it...
67507
vim@...
Dec 12, 2012 12:49 pm
Comment #3 on issue 96 by dominiqu...@...: Use of memory after free when pasting in read-only file using Perforce plugin ...
67508
Bram Moolenaar
Bram@...
Dec 12, 2012 1:25 pm
Patch 7.3.755 Problem: Autoconf doesn't find Python 3 if it's called "python". Solution: Search for "python2" and "python3" first, then "python". Files:...
67509
Bram Moolenaar
Bram@...
Dec 12, 2012 2:55 pm
Patch 7.3.756 Problem: A location list can get a wrong count in :lvimgrep. Solution: Check if the list was changed by autocommands. (mostly by Christian...
67510
Bram Moolenaar
Bram@...
Dec 12, 2012 3:12 pm
Patch 7.3.757 Problem: Issue 96: May access freed memory when a put command triggers autocommands. (Dominique Pelle) Solution: Call u_save() before...
67511
vim@...
Dec 12, 2012 3:14 pm
Updates: Status: Started Comment #4 on issue 96 by brammool...@...: Use of memory after free when pasting in read-only file using Perforce plugin ...
67512
Bram Moolenaar
Bram@...
Dec 12, 2012 3:44 pm
Patch 7.3.758 Problem: Matchit plugin does not handle space in #ifdef. Solution: Change matching pattern to allow spaces. (Mike Morearty) Files:...
67513
Bram Moolenaar
Bram@...
Dec 12, 2012 4:12 pm
Patch 7.3.759 Problem: MS-Windows: Updating the tabline is slow when there are many tabs. Solution: Disable redrawing while performing the update. (Arseny...
67514
Bram Moolenaar
Bram@...
Dec 12, 2012 4:34 pm
Patch 7.3.760 Problem: dv_ deletes the white space before the line. Solution: Move the cursor to the first non-white. (Christian Brabandt) Files:...
67515
Bram Moolenaar
Bram@...
Dec 12, 2012 5:20 pm
Patch 7.3.761 Problem: In Visual mode a "-p does not work. (Marcin Szamotulski) Solution: Avoid writing to "- before putting it. (Christian Brabandt) ...
67516
vim@...
Dec 12, 2012 7:15 pm
Comment #5 on issue 96 by dominiqu...@...: Use of memory after free when pasting in read-only file using Perforce plugin ...
67517
vim@...
Dec 12, 2012 8:02 pm
Updates: Status: Fixed Comment #6 on issue 96 by brammool...@...: Use of memory after free when pasting in read-only file using Perforce plugin ...
67518
So8res
so8res@...
Dec 12, 2012 8:49 pm
The \i and \k regex character classes are very useful, matching identifier and keyword characters respectively. You might think that \I and \K match...
67519
David Fishburn
dfishburn.vim@...
Dec 12, 2012 9:39 pm
... I will attempt to reproduce the issue with the YankRing, and then try it with this patch. But so far I haven't been able to reliably reproduce the crash. ...
67520
ZyX
zyx.vim@...
Dec 13, 2012 3:44 am
... No way for "\_i"/"\_k". "\_" already has fixed meaning: "add newline to given character class" and this change will be incompatible with current behavior. ...
67521
Bram Moolenaar
Bram@...
Dec 13, 2012 9:28 pm
... Right, it's not easy to match the opposite of \i and \k. \_ is reserved for items including a line break. Perhaps we can make a generic solution with \-...
67522
Ben Fritz
fritzophrenic@...
Dec 13, 2012 9:44 pm
... What about instead of trying to find characters to pair with a \, we just define new classes similar to [[:alnum:]] like [[:identifier:]] and [[:keyword:]]...
67523
Nate Soares
nate@...
Dec 13, 2012 9:48 pm
+1 to [:identifier:] and [:keyword:]. Unfortunately, outside of \i and \k convention is that uppercase means negation (\s and \S, \w and \W, etc.). We can't...
67524
Christian Brabandt
cblists@...
Dec 13, 2012 10:48 pm
Bram, I noticed, my gvim started behaving strange when using the gnome version. It turned out, that some script was doing something like :echo 1+1.0 and Vim...
67525
Eric Dobson
eric.n.dobson@...
Dec 14, 2012 5:20 am
I figured this out. It was that vim was not being compiled with the precise garbage collection when racket was, and a couple of bugs on the vim allocation of...
67526
Christian Höltje
docwhat@...
Dec 14, 2012 8:09 am
This is really a bug in Ruby, I think. How to recreate on OSX: * Compile vim with ruby support, using the "system" ruby (/usr/bin/ruby, version 1.8.7-p358 in...
67527
Sergey Khorev
sergey.khorev@...
Dec 14, 2012 5:06 pm
... Are you talking about official Vim source? For http://code.google.com/r/sergeykhorev-vim-mzscheme/source I reworked some memory allocation stuff so...
67528
Bram Moolenaar
Bram@...
Dec 14, 2012 7:52 pm
... Thanks, I'll add it to the todo list. -- hundred-and-one symptoms of being an internet addict: 162. You go outside and look for a brightness knob to turn...
67529
char101
peacech@...
Dec 15, 2012 9:59 am
... Setting WM_SETREDRAW to TRUE is not enough. At least in my computer (Win XP), the tabline is not repainted after deleting a tab. It needs to call...
67530
Bram Moolenaar
Bram@...
Dec 15, 2012 1:13 pm
... OK, but wouldn't this cause the tabline to be drawn twice in some systems? -- hundred-and-one symptoms of being an internet addict: 165. You have a web...
67531
Bram Moolenaar
Bram@...
Dec 16, 2012 11:51 am
Patch 7.3.762 (after 7.3.759) Problem: On some systems the tabline is not redrawn. Solution: Call RedrawWindow(). (Charles Peacech) Files:...