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

2006-04-26 Thread Milan Berta
I see. Probably I'd found rare word combinations and the hyphen-suggestion works very good with the best and double internal method. I was used to the Ispell program and its spelling and vocabulary. There were always some suggestion with hyphen which suited the wrong words in right way. There is

vim70f -- number of spell suggestions 'lines' (for some non-English spl)

2006-04-26 Thread Milan Berta
Hello Vim-Dev, In :help 'spellsuggest' these lines are written about the number of the suggestions: 'spellsuggest' 'sps'string (default best) . . {number} The maximum number of suggestions listed for |z=|. Not used for |spellsuggest()|. The number of suggestions is

Re: some problem with vim7f Beta

2006-04-26 Thread Martin Stubenschrott
On Wed, Apr 26, 2006 at 10:35:30AM +0800, Linsong wrote: My main point is: I don't want to select entry in the completion menu by pressing CTRL-N or CTRL-P, instead, I want to input enough characters to make correct entry become the first entry and it is highlighted, then I can use

Re: some problem with vim7f Beta

2006-04-26 Thread Linsong
Martin Stubenschrott wrote: On Wed, Apr 26, 2006 at 10:35:30AM +0800, Linsong wrote: My main point is: I don't want to select entry in the completion menu by pressing CTRL-N or CTRL-P, instead, I want to input enough characters to make correct entry become the first entry and it is

Re: vim70f -- number of spell suggestions 'lines' (for some non-English spl)

2006-04-26 Thread Bram Moolenaar
Milan Berta wrote: In :help 'spellsuggest' these lines are written about the number of the suggestions: 'spellsuggest' 'sps' string (default best) . . {number} The maximum number of suggestions listed for |z=|. Not used for |spellsuggest()|. The number of

Re: some problem with vim7f Beta

2006-04-26 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: some problem with vim7f Beta

2006-04-26 Thread Ilya
Linsong wrote: Martin Stubenschrott wrote: But I am still not very clear why the first entry in the menu is not highlighted? Is it not reasonable? I don't get any point that highlighting the first entry will make the behavior unreasonable. I think there shoud be an very good reason and I

Now that we have feedkeys()...

2006-04-26 Thread Nikolai Weibull
a readkeys() can't be far behind. Having a readkey() - singular probably makes more sense - function would allow us (i.e., me) to do something like this: function! s:DeleteComment(inclusive) Delete a language-specific comment : : endfunction function! s:Delete() let key = readkey()

Re: Now that we have feedkeys()...

2006-04-26 Thread Bram Moolenaar
Nikolai Weibull wrote: a readkeys() can't be far behind. Having a readkey() - singular probably makes more sense - function would allow us (i.e., me) to do something like this: We already have getchar(), that basically does this. function! s:DeleteComment(inclusive) Delete a

Re: Now that we have feedkeys()...

2006-04-26 Thread Nikolai Weibull
On 4/26/06, Aaron Griffin [EMAIL PROTECTED] wrote: On 4/26/06, Nikolai Weibull [EMAIL PROTECTED] wrote: That is, the input sequence dac would delete a comment. Entering something else would just be fed to Vim as always. Couldn't you use :omap for something like that? (I hope it's OK that

Re: some problem with vim7f Beta

2006-04-26 Thread Linsong
Bram Moolenaar wrote: 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.