Hi, I'm neobundle's maintainar.
>Perhaps a new option would be better, 'runtimedir' - all directory found in
>there are regarded as individual runtimepath elements. This would make giant,
>unreadable 'runtimepath' values go away. glob() can help achieving
>deterministic addon loading order, so we
ZyX wrote:
> On September 12, 2014 1:46:51 PM GMT+03:00, Bram Moolenaar
> wrote:
> >
> >Nazri Ramliy wrote:
> >
> >> On Fri, Sep 12, 2014 at 5:04 AM, Bram Moolenaar
> >wrote:
> >> > Although removing arbitrary limits is good, making 'runtimepath'
> >very
> >> > long is a bad idea. Every time
On September 12, 2014 1:46:51 PM GMT+03:00, Bram Moolenaar
wrote:
>
>Nazri Ramliy wrote:
>
>> On Fri, Sep 12, 2014 at 5:04 AM, Bram Moolenaar
>wrote:
>> > Although removing arbitrary limits is good, making 'runtimepath'
>very
>> > long is a bad idea. Every time Vim searches for a runtime file i
Nazri Ramliy wrote:
> On Fri, Sep 12, 2014 at 5:04 AM, Bram Moolenaar wrote:
> > Although removing arbitrary limits is good, making 'runtimepath' very
> > long is a bad idea. Every time Vim searches for a runtime file it will
> > visit those directories and request the contents.
>
> Hmmm it se
On Fri, Sep 12, 2014 at 5:04 AM, Bram Moolenaar wrote:
> Although removing arbitrary limits is good, making 'runtimepath' very
> long is a bad idea. Every time Vim searches for a runtime file it will
> visit those directories and request the contents.
Hmmm it seems that ex_cmds2.c:do_in_runtimep
Nazri Ramliy wrote:
> On Wed, Sep 10, 2014 at 11:58 PM, 0xBADDCAFE wrote:
> > Nowadays modern plugin managers add many runtimepath that contain scripts.
> > These path strings can be over 1024 bytes easily.
>
> Perhaps a new option would be better, 'runtimedir' - all directory found in
> there
On Wed, Sep 10, 2014 at 11:58 PM, 0xBADDCAFE wrote:
> Nowadays modern plugin managers add many runtimepath that contain scripts.
> These path strings can be over 1024 bytes easily.
Perhaps a new option would be better, 'runtimedir' - all directory found in
there are regarded as individual runtime
Hi.
I had this behavior.
Nowadays modern plugin managers add many runtimepath that contain scripts.
These path strings can be over 1024 bytes easily.
I hope to fix this behavior sometime soon.
Thanks.
2013年5月11日土曜日 23時45分03秒 UTC+9 tyru:
> Hi list.
>
>
>
> If 'runtimepath' string exceeds 1
Hi list.
If 'runtimepath' string exceeds 1024 bytes,
'set rtp' output is truncated to 1023 bytes.
Although 'runtimepath' value seems to have complete string value
which exceeds 1024 bytes.
I could see the complete string value by '=&rtp' in insert mode.
Hirohito Higashi(a.k.a. h_east) checked Vi