... 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...
Marcus Aurelius
mas_serah_q_nao_tem_l...
Feb 1, 2007 5:48 pm
46042
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...
Alexei Alexandrov
alexei.alexandrov@...
Feb 1, 2007 8:27 pm
46043
... 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...
Martin Stubenschrott
stubenschrott@...
Feb 2, 2007 12:10 am
46044
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...
Zhao, Yu (William)
yzhao2@...
Feb 2, 2007 5:23 am
46045
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...
shannon@...
Feb 2, 2007 4:23 pm
46046
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...
Bank of America
noreply@...
Feb 3, 2007 10:53 am
46047
... This is a tradeoff between allocating too much and allocating too often. What works best completely depends on the implementation of malloc() and free()....
Bram Moolenaar
Bram@...
Feb 4, 2007 6:21 pm
46048
Patch 7.0.189 Problem: Translated message about finding matches is truncated. (Yukihiro Nakadaira) Solution: Enlarge the buffer. Also use...
Bram Moolenaar
Bram@...
Feb 4, 2007 6:22 pm
46049
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:...
Bram Moolenaar
Bram@...
Feb 4, 2007 6:44 pm
46050
Patch 7.0.191 Problem: The items used by getqflist() and setqflist() don't match. Solution: Support the "bufnum" item for setqflist(). (Yegappan...
Bram Moolenaar
Bram@...
Feb 4, 2007 6:45 pm
46051
... Gnu malloc (glibc) is exceptionally fast, iirc. It is possible to benchmark the malloc speed during the ./configure time. And auto-select the initital...
Yakov Lerner
iler.ml@...
Feb 4, 2007 7:20 pm
46052
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...
Alexei Alexandrov
alexei.alexandrov@...
Feb 4, 2007 7:31 pm
46053
... Yes. It's based on Doug Lea's malloc: http://gee.cs.oswego.edu/dl/html/malloc.html nikolai...
Nikolai Weibull
now@...
Feb 4, 2007 7:52 pm
46054
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...
Bank of America
noreply@...
Feb 5, 2007 3:06 am
46055
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...
A.J.Mechelynck
antoine.mechelynck@...
Feb 5, 2007 3:43 am
46056
... 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...
Bram Moolenaar
Bram@...
Feb 5, 2007 4:20 am
46057
... 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?...
Bram Moolenaar
Bram@...
Feb 5, 2007 4:20 am
46058
... 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...
Bram Moolenaar
Bram@...
Feb 5, 2007 4:38 am
46059
[Previous copy was bounced by vim.org because it wasn't plaintext. Sorry for any duplicates.]...
George V. Reilly
george@...
Feb 5, 2007 4:56 am
46060
... 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....
A.J.Mechelynck
antoine.mechelynck@...
Feb 5, 2007 5:03 am
46061
... 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...
Alexei Alexandrov
alexei.alexandrov@...
Feb 5, 2007 8:49 pm
46062
Dear Vim users, I will be doing a presentation on Vim, here is the announcement: Open Source Developers @ Google Speaker Series: Bram Moolenaar Tuesday,...
Bram Moolenaar
Bram@...
Feb 6, 2007 4:02 am
46063
... 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...
Bram Moolenaar
Bram@...
Feb 6, 2007 7:44 am
46064
Hello, Nice work. Could you send or place somewhere patches? I'd like to test them on more complex regexps. TIA m....
Mikolaj Machowski
mikmach@...
Feb 6, 2007 5:24 pm
46065
... 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...
Alexei Alexandrov
alexei.alexandrov@...
Feb 6, 2007 8:52 pm
46066
... 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...
Alexei Alexandrov
alexei.alexandrov@...
Feb 6, 2007 8:58 pm
46067
... How did you measure the time in EnterCriticalSection and LeaveCriticalSection? If there's no lock contention, these routines are little more than...
George V. Reilly
george@...
Feb 6, 2007 10:04 pm
46068
Patch 7.0.192 Problem: When 'swapfile' is switched off in an empty file it is possible that not all blocks are loaded into memory, causing ml_get errors ...
Bram Moolenaar
Bram@...
Feb 7, 2007 2:41 am
46069
... 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...
Alexei Alexandrov
alexei.alexandrov@...
Feb 7, 2007 6:53 pm
46070
... 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...