Re: foldmethod=syntax with Ruby slows Vim down tremendously

2011-11-18 Fir de Conversatie Peter Odding
Like Ingo I'm sorry I can't get more specific, but that's kind of the problem: This issue is really hard to diagnose properly because it basically… seems like syntax folding has some horrible worst case performance which only shows once in a while, in large buffers, but once it manifests you can

Re: foldmethod=syntax with Ruby slows Vim down tremendously

2011-11-18 Fir de Conversatie Peter Odding
Anyway in the worst case I'll just disable syntax folding for buffers where line('$') 1000 holds. At least then I still get to enjoy all of the other goodies Vim has to offer. I'm definitely not switching back to an IDE :-P. I'll keep vim-dev up to date in case I make any progress on this issue.

Re: Gvim on Windows doesn't remember its position and size

2011-11-18 Fir de Conversatie Christian Brabandt
Hi Дмитрий! On Do, 17 Nov 2011, Дмитрий Франк wrote: 15 ноября 2011 г. 15:05 пользователь Christian Brabandt cbli...@256bit.orgнаписал: On Sun, November 13, 2011 4:43 pm, Дмитрий Франк wrote: Dear Vim developers, so do you plan to allow negative values for :winpos in future? Vim

Re: Python threading timing bug causes vim to segfault

2011-11-18 Fir de Conversatie Xavier de Gaye
On Fri, Nov 18, 2011 at 6:39 AM, Jan Larres wrote: Hi, I just spent some time hunting done a segfault that was cropping up recently for me, and I have narrowed it down to some python threading that the clang_complete plugin is doing. I have attached a minimal vimrc that is needed to make the

Re: Buffer unloading bug

2011-11-18 Fir de Conversatie Alexey Radkov
Here is the latest patch attached which fixes syntax highlighting with bufhidden=delete and autocommands for BufDelete that can temporarily unload current buffer (like in plugin dbext). I added a new field b_p_bkl ('keep loaded') in struct file_buffer to be used in set_curbuf() to flag

patch for Win32 sxq/shcf defaults, and question about option defaults

2011-11-18 Fir de Conversatie Benjamin Fritz
Fixed item from todo list: Win32: When 'shell' is cmd.exe this command fails: echo system('c:/path/echo.exe foo bar') Should we set the default for 'shellxquote' to a double quote, when 'shell' contains cmd in the tail? (Benjamin Fritz, 2008 Oct 13) Also set 'shellcmdflag' to include

Re: patch for Win32 sxq/shcf defaults, and question about option defaults

2011-11-18 Fir de Conversatie Benjamin Fritz
On Fri, Nov 18, 2011 at 11:40 PM, Benjamin Fritz fritzophre...@gmail.com wrote: Fixed item from todo list: Win32: When 'shell' is cmd.exe this command fails:       echo system('c:/path/echo.exe foo bar') Should we set the default for 'shellxquote' to a double quote, when 'shell' contains cmd

Re: patch for Win32 sxq/shcf defaults, and question about option defaults

2011-11-18 Fir de Conversatie Benjamin Fritz
Darnit, also forgot to attach the patch. -- 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 information, visit http://www.vim.org/maillist.php sxq_shcf_defaults.patch Description: Binary data

Re: Python threading timing bug causes vim to segfault

2011-11-18 Fir de Conversatie Jan Larres
Xavier de Gaye xdeg...@gmail.com: On Fri, Nov 18, 2011 at 6:39 AM, Jan Larres wrote: I just spent some time hunting done a segfault that was cropping up recently for me, and I have narrowed it down to some python threading that the clang_complete plugin is doing. I have attached a minimal