Re: [bug?][patch] Vim command completion is not performed, when expression register inserted

2016-09-05 Fir de Conversatie Bram Moolenaar
Hirohito Higashi wrote: > Hi Bram and developers! > > 2016-9-4(Sun) 22:40:41 UTC+9 h_east: > > Hi Bram and developers, > > > > 2016-9-3(Sat) 21:52:42 UTC+9 Bram Moolenaar: > > > Hirohito Higashi wrote: > > > > > > > How to reproduce: > > > > - Prepare the following vim script file. > > > >

Re: [bug?][patch] Vim command completion is not performed, when expression register inserted

2016-09-05 Fir de Conversatie h_east
Hi Bram and developers! 2016-9-4(Sun) 22:40:41 UTC+9 h_east: > Hi Bram and developers, > > 2016-9-3(Sat) 21:52:42 UTC+9 Bram Moolenaar: > > Hirohito Higashi wrote: > > > > > How to reproduce: > > > - Prepare the following vim script file. > > > $ cat sample1.vim > > > function! Sample() > > >

Re: [bug?][patch] Vim command completion is not performed, when expression register inserted

2016-09-04 Fir de Conversatie h_east
Hi Bram and developers, 2016-9-3(Sat) 21:52:42 UTC+9 Bram Moolenaar: > Hirohito Higashi wrote: > > > How to reproduce: > > - Prepare the following vim script file. > > $ cat sample1.vim > > function! Sample() > > return 'autocmd ' > > endfunction > > call feedkeys("i\=Sample()\\\") > > >

Re: [bug?][patch] Vim command completion is not performed, when expression register inserted

2016-09-03 Fir de Conversatie Bram Moolenaar
Hirohito Higashi wrote: > How to reproduce: > - Prepare the following vim script file. > $ cat sample1.vim > function! Sample() > return 'autocmd ' > endfunction > call feedkeys("i\=Sample()\\\") > > - Run vanilla vim with execute above file. > $ vim -Nu NONE -S sample1.vim > > >

[bug?][patch] Vim command completion is not performed, when expression register inserted

2016-09-02 Fir de Conversatie h_east
Hi Bram and list, How to reproduce: - Prepare the following vim script file. $ cat sample1.vim function! Sample() return 'autocmd ' endfunction call feedkeys("i\=Sample()\\\") - Run vanilla vim with execute above file. $ vim -Nu NONE -S sample1.vim Expected behavior (I think): Current