Re: Vim-7.0f: error in help for :tabmove

2006-04-25 Thread Bram Moolenaar
Gary Johnson wrote: :help :tabmove now (in 7.0f) contains this: *:tabm* *:tabmove* :tabmove NMove the current tab page to after tab page N. Use zero to make the current tab page the first one. Without N the tab

Re: some problem with vim7f Beta

2006-04-25 Thread Bram Moolenaar
Vincent Linsong wrote: I just try the fresh vim7f Beta on my ubuntu box, found some problems: 1. the behavior of omnicompletion is changed I set completeopt=menu,preview,longest in vim7d beta, when I input something then press C-XC-O, the completion

Re: some problem with vim7f Beta

2006-04-25 Thread Linsong
Bram Moolenaar wrote: Vincent Linsong wrote: I just try the fresh vim7f Beta on my ubuntu box, found some problems: 1. the behavior of omnicompletion is changed I set completeopt=menu,preview,longest in vim7d beta, when I input something then press C-XC-O,

vim70f, no hyphen-suggestions, dictionary bug(?)

2006-04-25 Thread Milan Berta
Hello Vim-Dev, Is this only my problem, or is this really a bug? There are no suggestions with hyphen - in the list of suggestions (for example, on z= request in normal mode. There are a lot of possibilities with the hyphen in long words (especially in English). But they are just not shown.

Re: Vim 7.0f BETA

2006-04-25 Thread Neil Bird
Around about 25/04/06 08:48, Yakov Lerner typed ... feedkeys({string} [, {mode}]) *feedkeys()* Characters in {string} are queued for processing as if they come from a mapping or where typed by user. They are added to

Re: vim70f, no hyphen-suggestions, dictionary bug(?)

2006-04-25 Thread Bram Moolenaar
Milan Berta wrote: Is this only my problem, or is this really a bug? There are no suggestions with hyphen - in the list of suggestions (for example, on z= request in normal mode. There are a lot of possibilities with the hyphen in long words (especially in English). But they are just not

Re: some problem with vim7f Beta

2006-04-25 Thread Bram Moolenaar
Vincent Linsong wrote: This is by design. Some people mentioned that when using the longest common string the first entry should not be selected. Now you can use CTRL-N to select the first entry. Previously you would need to do CTRL-N CTRL-P to get the first entry. I use the

Re: :for var in list

2006-04-25 Thread James Vega
On Tue, Apr 25, 2006 at 02:21:07PM -0400, Charles E Campbell Jr wrote: Hello! I know this is a late date, but I think it would be helpful if for var in list ... endfor would complete with var= . For example where this might come in handy: for home in split(rtp,',') if

Re: :for var in list

2006-04-25 Thread Charles E Campbell Jr
James Vega wrote: On Tue, Apr 25, 2006 at 02:21:07PM -0400, Charles E Campbell Jr wrote: I know this is a late date, but I think it would be helpful if for var in list ... endfor would complete with var= . For example where this might come in handy: for home in split(rtp,',') if

Re: :for var in list

2006-04-25 Thread Bram Moolenaar
Charles Campbell wrote: I know this is a late date, but I think it would be helpful if for var in list ... endfor would complete with var= . For example where this might come in handy: for home in split(rtp,',') if isdirectory(home) | break | endif endfor So, if the

Re: :for var in list

2006-04-25 Thread Charles E Campbell Jr
Bram Moolenaar wrote: Charles Campbell wrote: I know this is a late date, but I think it would be helpful if for var in list ... endfor would complete with var= ... This for loop is like it is in Python, and it has proven to be very useful. It's easy to add something to the

Re: :for var in list

2006-04-25 Thread Mike Steed
On Tue, Apr 25, 2006 at 10:32:35PM +0200, Bram Moolenaar wrote: This for loop is like it is in Python, and it has proven to be very useful. It's easy to add something to the list if you want to loop over more things. E.g.: for home in split(rtp,',') + [''] if

Re: some problem with vim7f Beta

2006-04-25 Thread Linsong
Bram Moolenaar wrote: Hi, Bram Thanks for your reply! Vincent Linsong wrote: This is by design. Some people mentioned that when using the longest common string the first entry should not be selected. Now you can use CTRL-N to select the first entry. Previously you would need to do