Re: Fixed: prevent slowness from Insert mode completion

2006-09-13 Thread Peter Hodge
> > 1. The second title above is misleading. Bram uses "(after patch nnn)" > when a patch _depends_ on another, i.e., requires patch nnn to have been > applied previously, usually because the later patch fixes a bug > introduced by the earlier one. For instance, official patch 7.0.057 is > lab

Re: Fixed: prevent slowness from Insert mode completion

2006-09-13 Thread Peter Hodge
--- Bram Moolenaar <[EMAIL PROTECTED]> wrote: > > Peter Hodge wrote: > > > Backspacing or typing while the Vim 7 Insert completion popup window > > is running is very difficult when the completion list is long or comes > > from many sources. Because the popup menu refreshes itself on each > >

Re: Three oddities

2006-09-13 Thread A.J.Mechelynck
Dr. Christoph Kögl wrote: Hi all, I noticed the following in VIM 7: - When I have multiple tabs and windows in each tab open, and I am doing a :bufdo :e to reload all buffers, the list of files is printed as they are being reloaded. After finishing, however, the last file having been reloaded

Three oddities

2006-09-13 Thread Dr . Christoph Kögl
Hi all, I noticed the following in VIM 7: - When I have multiple tabs and windows in each tab open, and I am doing a :bufdo :e to reload all buffers, the list of files is printed as they are being reloaded. After finishing, however, the last file having been reloaded is put into the window w

distributing experimental patches with vim ?

2006-09-13 Thread Yakov Lerner
Vim patches submitted by external submitters are either 'incorporated' or 'outsude of vim sources'. That's black-and-white. I thought it's possible to add some intermediate state, where 'experimental-patch' is neither outside of vim nor inside-vim. This is useful because people can try experimenta

processing network connections again -- in EX mode

2006-09-13 Thread Gaspar Chilingarov
Hi there! I've solved problem with processing network connection in RealWaitForChar, but now I have another problem. If user presses : in normal mode and switches to ex mode I still miss some keep-alive messages and break connectivity to host program. How thus can be solved? Where are ex command

Re: Bug or feature? CursorLine/CursorColumn hihlights vs. other highlights

2006-09-13 Thread A.J.Mechelynck
Bram Moolenaar wrote: Tony Mechelynck wrote: I have enabled CursorLine and CursorColumn highlights as follows: (~/.vimrc): [...] colorscheme almost-default [...] if exists("+cursorcolumn") set cuc cul endif [...] (~/.vim/colors/almost-default.vim): [.

Re: Fixed: prevent slowness from Insert mode completion

2006-09-13 Thread Bram Moolenaar
Peter Hodge wrote: > Backspacing or typing while the Vim 7 Insert completion popup window > is running is very difficult when the completion list is long or comes > from many sources. Because the popup menu refreshes itself on each > backspace, each keystroke can take up to half a second to appe

Re: Bug or feature? CursorLine/CursorColumn hihlights vs. other highlights

2006-09-13 Thread Bram Moolenaar
Tony Mechelynck wrote: > I have enabled CursorLine and CursorColumn highlights as follows: > > (~/.vimrc): > > [...] > colorscheme almost-default > [...] > if exists("+cursorcolumn") > set cuc cul > endif > [...] > > (~/.vim/colors/almost-default.vim): > > [...

Re: patch: automatically enter paste mode

2006-09-13 Thread Ian Kilgore
On Wed, Sep 13, 2006 at 11:27:43AM +0300, Yakov Lerner wrote: > Nice. So simple. I have couple of comments. > Thank you :) > 1. Don't you need to reset 'paste' back to 'nopaste' when > high cps stops ? > There is a hastily coded version of the patch that does this, but I don't like it. It seems

Re: Fixed: prevent slowness from Insert mode completion

2006-09-13 Thread A.J.Mechelynck
Peter Hodge wrote: Hello, Backspacing or typing while the Vim 7 Insert completion popup window is running is very difficult when the completion list is long or comes from many sources. Because the popup menu refreshes itself on each backspace, each keystroke can take up to half a second to app

Re: patch: automatically enter paste mode

2006-09-13 Thread Yakov Lerner
On 9/13/06, Ian Kilgore <[EMAIL PROTECTED]> wrote: Pasting code into vim and forgetting to set paste can have annoying results. This patch detects the 'really fast typing' that happens when something is pasted in, and turns on paste mode. It provides an option 'autopaste' (default false) which

Fixed: prevent slowness from Insert mode completion

2006-09-13 Thread Peter Hodge
Hello, Backspacing or typing while the Vim 7 Insert completion popup window is running is very difficult when the completion list is long or comes from many sources. Because the popup menu refreshes itself on each backspace, each keystroke can take up to half a second to appear, and it was actual