netrw plugin bug?

2006-07-06 Thread Alexei Alexandrov
instead of previously yanked text. -- Alexei Alexandrov

A couple of notes on VIM performance

2006-10-08 Thread Alexei Alexandrov
of spl files in background. -- Alexei Alexandrov

Patch for python syntax

2006-10-08 Thread Alexei Alexandrov
Hi All! Here is a small patch for python.vim syntax file which enables spell checking in comments and strings only. It would be nice to include it into VIM 7. P.S. It seems that very few syntax files support @Spell/@NoSpell correctly. -- Alexei Alexandrov python.vim.patch Description

Re: Bug with --remote-tab-silent

2007-01-18 Thread Alexei Alexandrov
is in 'wildignore' -- Alexei Alexandrov

Re: Bug with --remote-tab-silent

2007-01-18 Thread Alexei Alexandrov
set 'binary', try another variant. The key in the bug report is that error is reproducible only with --remote-tab-silent. I'm not sure why the advices above can have different behavior with this option. -- Alexei Alexandrov

Re: BOF Vim 8 - Suggestions

2007-01-18 Thread Alexei Alexandrov
day is Vim performance. Especially on Windows. Startup is slower than it should be and redraw of the screen is also rather slow - and almost unusable with TTF fonts with Antialiasing on. If would need to choose _one_ thing I'd like to have in Vim improved I'd choose performance... -- Alexei

Re: Odp: BOF Vim 8 - Suggestions

2007-01-29 Thread Alexei Alexandrov
/packages/vim/debian/tiny/vimrc.tiny.diff?op=filerev=0sc=0 FWIW we also set a lot of other default values when not invoked as 'vi'. This really seems to be a good option. -- Alexei Alexandrov

Re: BOF Vim 8 - Suggestions

2007-01-29 Thread Alexei Alexandrov
a hungry person food, teach him how to grow food. Sort of OT but still: before teaching it's better to give them some food - otherwise they will die before they even learn anything... -- Alexei Alexandrov

Vim 7 performance notes

2007-02-01 Thread Alexei Alexandrov
? -- Alexei Alexandrov

Compilation error with -D EXITFREE

2007-02-04 Thread Alexei Alexandrov
Index: os_mswin.c === --- os_mswin.c (revision 205) +++ os_mswin.c (working copy) @@ -239,6 +239,11 @@ if (gui.in_use) gui_exit(r); + +#ifdef EXITFREE +free_all_mem(); +#endif + exit(r); } -- Alexei Alexandrov

Re: Vim 7 performance notes

2007-02-05 Thread Alexei Alexandrov
seconds The difference is about 15%. Coding detail: please don't use if (!number), use if (number == 0), that is so much easier to read. Checking if ga_data is NULL would be simpler. Got it - no problem. -- Alexei Alexandrov

Re: Vim 7 performance notes

2007-02-06 Thread Alexei Alexandrov
if you have one regexp which runs very long you won't probably notice any major difference. -- Alexei Alexandrov regexp.c.diff Description: Binary data

Re: Vim 7 performance notes

2007-02-06 Thread Alexei Alexandrov
Hi Alexei Alexandrov, you wrote: Hi Bram et al., I'm doing some performance investigations of Vim code trying to understand whether there are any possibilities to improve it. I've also noticed that Vim spends somewhat significant time on startup loading spell files (I have 2 languages

Re: Vim 7 performance notes

2007-02-07 Thread Alexei Alexandrov
be much bigger. I would be vary wary of using the _getc_nolock macro until we understand why you are seeing those results. -- Alexei Alexandrov test_cs.c_ Description: Binary data

Re: Vim 7 performance notes

2007-02-08 Thread Alexei Alexandrov
Hi Mikolaj Machowski, you wrote: When testing it with VST it gave 3.4% speed improvements (the same metodology - 3 tests before and after, choose the best results). Well, it's not that much but it's still positive result. :-) -- Alexei Alexandrov

Re: Vim 7 performance notes

2007-02-10 Thread Alexei Alexandrov
already get a big increase by not compiling for debugging? With MSVC this usually has a big impact. Also largely defeats profiling with debugging enabled. I do _all_ performance measurements using optimized version of binary with symbols. This is just a must for performance tuning. -- Alexei

Re: patch 7.0.193

2007-02-18 Thread Alexei Alexandrov
, and keep the file you were working on. doesn't apply here well. There wasn't any file I was working on. -- Alexei Alexandrov

Re: copyindent/preserveindent question

2007-03-08 Thread Alexei Alexandrov
preserveindent/copyindent is NOT set. You should also have quoted the next one: Enabling this option means the indent will preserve as many existing characters as possible for indenting, and only add additional tabs or spaces as required. -- Alexei Alexandrov

Spell checking in cwindow

2007-04-01 Thread Alexei Alexandrov
Hi All! When spell checking is on by default, quick fix window is full of spell checking errors. Probably it should have off always, shouldn't it? -- Alexei Alexandrov