Re: split() and 'ic'

2012-11-04 Fir de Conversatie Bram Moolenaar
Andy Wokula wrote: Looks like split() never ignores case: :set ic :echo split('abcABC', 'b') ['a', 'cABC'] but this is not mentioned in :h split() What about adding a line (taken from :h :helpgrep): 'ignorecase' is not used, add \c to ignore case. I'll add

split() and 'ic'

2012-11-02 Fir de Conversatie Andy Wokula
Looks like split() never ignores case: :set ic :echo split('abcABC', 'b') ['a', 'cABC'] but this is not mentioned in :h split() What about adding a line (taken from :h :helpgrep): 'ignorecase' is not used, add \c to ignore case. -- Andy -- You received this message from

Re: split() and 'ic'

2012-11-02 Fir de Conversatie Bee
On Nov 2, 9:45 am, Andy Wokula anw...@yahoo.de wrote: Looks like split() never ignores case:      :set ic      :echo split('abcABC', 'b')      ['a', 'cABC'] but this is not mentioned in      :h split() What about adding a line (taken from :h :helpgrep):      'ignorecase' is not used