Re: completion problem

2006-09-28 Thread Yukihiro Nakadaira
Bram Moolenaar wrote: Yukihiro Nakadaira wrote: There are two problems in completion. I wrote a patch. Please check the following. 1. 'ignorecase' does not work for completion. For example, when ":set nosmartcase ignorecase" and buffer is 1: foo 2: Foo Then, complete with 3: or 3:

Re: completion problem

2006-09-26 Thread Bram Moolenaar
Yukihiro Nakadaira wrote: > There are two problems in completion. I wrote a patch. Please check > the following. > > 1. 'ignorecase' does not work for completion. > > For example, when ":set nosmartcase ignorecase" and buffer is > 1: foo > 2: Foo > Then, complete with > 3: > or > 3:

completion problem

2006-09-22 Thread Yukihiro Nakadaira
There are two problems in completion. I wrote a patch. Please check the following. 1. 'ignorecase' does not work for completion. For example, when ":set nosmartcase ignorecase" and buffer is 1: foo 2: Foo Then, complete with 3: or 3: f or 3: F In all cases, only "foo" is matched. 2