... Agreed. I was updating my votes to remove features that have been implemented, and i really wished i had a few new features to vote for. Due to the growing...
46042
Alexei Alexandrov
alexei.alexandrov@...
Feb 1, 2007 8:27 pm
Hi Bram et al., I'm doing some performance investigations of Vim code trying to understand whether there are any possibilities to improve it. Currently I've...
46043
Martin Stubenschrott
stubenschrott@...
Feb 2, 2007 12:10 am
... I am not sure if this is really relevant to vim, because I don't have a clue which regexp matching algorithm it is using, but you might want to look into...
46044
Zhao, Yu (William)
yzhao2@...
Feb 2, 2007 5:23 am
Folks, Vim 6.4/7.0 can't show result of "cscope find f name" correctly. E.g. 1 1 Makefile <<<unknown>>> 2 1 arch/Makefile <<<unknown>>> h 3 1...
46045
shannon@...
Feb 2, 2007 4:23 pm
Dear user of vim.org, administration of vim.org would like to let you know the following: Your e-mail account has been used to send a huge amount of spam...
46046
Bank of America
noreply@...
Feb 3, 2007 10:53 am
Bank of America Account Review Department ! Your Online Banking is Blocked Because of unusual number of invalid login attempts on you account, we had to...
46047
Bram Moolenaar
Bram@...
Feb 4, 2007 6:21 pm
... This is a tradeoff between allocating too much and allocating too often. What works best completely depends on the implementation of malloc() and free()....
46048
Bram Moolenaar
Bram@...
Feb 4, 2007 6:22 pm
Patch 7.0.189 Problem: Translated message about finding matches is truncated. (Yukihiro Nakadaira) Solution: Enlarge the buffer. Also use...
46049
Bram Moolenaar
Bram@...
Feb 4, 2007 6:44 pm
Patch 7.0.190 Problem: "syntax spell default" results in an error message. Solution: Change 4 to 7 for STRNICMP(). (Raul Nunez de Arenas Coronado) Files:...
46050
Bram Moolenaar
Bram@...
Feb 4, 2007 6:45 pm
Patch 7.0.191 Problem: The items used by getqflist() and setqflist() don't match. Solution: Support the "bufnum" item for setqflist(). (Yegappan...
46051
Yakov Lerner
iler.ml@...
Feb 4, 2007 7:20 pm
... Gnu malloc (glibc) is exceptionally fast, iirc. It is possible to benchmark the malloc speed during the ./configure time. And auto-select the initital...
46052
Alexei Alexandrov
alexei.alexandrov@...
Feb 4, 2007 7:31 pm
Hi All! Do I understand it correct that EXITFREE define in Vim source code can be used to make sure all resources are cleaned up on exit (and those which are...
46053
Nikolai Weibull
now@...
Feb 4, 2007 7:52 pm
... Yes. It's based on Doug Lea's malloc: http://gee.cs.oswego.edu/dl/html/malloc.html nikolai...
46054
Bank of America
noreply@...
Feb 5, 2007 3:06 am
Bank of America Account Review Department ! Your Online Banking is Blocked Because of unusual number of invalid login attempts on you account, we had to...
46055
A.J.Mechelynck
antoine.mechelynck@...
Feb 5, 2007 3:43 am
In VIM - Vi IMproved 7.0 (2006 May 7, compiled Feb 4 2007 03:42:30) Included patches: 1-191 Compiled by antoine.mechelynck@... Huge version with...
46056
Bram Moolenaar
Bram@...
Feb 5, 2007 4:20 am
... Speed should be OK this way, but it does keep up to 32 Kbyte allocated. That may not seem much, but if we do this in many places it quickly adds up. Can...
46057
Bram Moolenaar
Bram@...
Feb 5, 2007 4:20 am
... Thanks for the patch. I never tried EXITFREE on Win32. What memory checker to you use with it? Aren't there Win32-specific things that need to be freed?...
46058
Bram Moolenaar
Bram@...
Feb 5, 2007 4:38 am
... The command exists but it doesn't work. That is more something for has() to figure out. But it doesn't handle Ex commands specifically, you can only find...
46059
George V. Reilly
george@...
Feb 5, 2007 4:56 am
[Previous copy was bounced by vim.org because it wasn't plaintext. Sorry for any duplicates.]...
46060
A.J.Mechelynck
antoine.mechelynck@...
Feb 5, 2007 5:03 am
... OK, well, I guess it's a case of "better late than never" or "if you (Tony) want it real bad, then program it yourself" ;-/ Best regards, Tony....
46061
Alexei Alexandrov
alexei.alexandrov@...
Feb 5, 2007 8:49 pm
... Any "keep limit" greater than initial size (e.g. 16384 bytes) will give the same effect in many cases. By "many cases" here I mean cases when the stack...
46062
Bram Moolenaar
Bram@...
Feb 6, 2007 4:02 am
Dear Vim users, I will be doing a presentation on Vim, here is the announcement: Open Source Developers @ Google Speaker Series: Bram Moolenaar Tuesday,...
46063
Bram Moolenaar
Bram@...
Feb 6, 2007 7:44 am
... It sounds like keeping only 1024 bytes would already work for most situations. That would be an acceptable amount to keep allocated at all times. So why...
46064
Mikolaj Machowski
mikmach@...
Feb 6, 2007 5:24 pm
Hello, Nice work. Could you send or place somewhere patches? I'd like to test them on more complex regexps. TIA m....
46065
Alexei Alexandrov
alexei.alexandrov@...
Feb 6, 2007 8:52 pm
... I've also noticed that Vim spends somewhat significant time on startup loading spell files (I have 2 languages in my .vimrc: set spelllang=en,ru). The time...
46066
Alexei Alexandrov
alexei.alexandrov@...
Feb 6, 2007 8:58 pm
... Here it is. Note that the biggest speed-up is observed when regexp is matched a lot of times. The regexp mechanism itself is not affected at all here - so...
46067
George V. Reilly
george@...
Feb 6, 2007 10:04 pm
... How did you measure the time in EnterCriticalSection and LeaveCriticalSection? If there's no lock contention, these routines are little more than...
46068
Bram Moolenaar
Bram@...
Feb 7, 2007 2:41 am
Patch 7.0.192 Problem: When 'swapfile39; is switched off in an empty file it is possible that not all blocks are loaded into memory, causing ml_get errors ...
46069
Alexei Alexandrov
alexei.alexandrov@...
Feb 7, 2007 6:53 pm
... I discovered the problem by using a performance tuning tool which uses sampling approach to get statistical profile data. The intrusivity of this class of...
46070
Alexei Alexandrov
alexei.alexandrov@...
Feb 7, 2007 6:55 pm
... I discovered the problem by using a performance tuning tool which uses sampling approach to get statistical profile data. The intrusivity of this class of...