I installed the development snapshot of ion3 and added
kpress("KP_Begin", "_sub:request_geom{w=89}"),
to cfg_bindings.lua but it still has no effect. I tried
it in the WScreen, WMPlex and WFrame sections. Where is
the proper place to put it?
* Tuomo Valkonen <[EMAIL PROTECTED]>:
> On Wed, Jan 26, 2005 at 03:39:40PM -0700, John Harrigan wrote:
> > kpress("KP_Begin", make_mplex_sub_fn(WRegion.request_geom,{w=80})),
>
> This is a big awkward to do in Ion2:
>
> kpress("KP_Begin", make_mplex_sub_fn(function(_sub)
> _sub:request_geom{w=80}
> end)),
>
>
> You might want to consider switching to Ion3, this is much easier there:
>
>
> kpress("KP_Begin", "_sub:request_geom{w=89}"),
>
>
> (The construct
> kpress("KP_Begin", function(_, _sub) _sub:request_geom{w=80} end)
> also won't work in Ion2, because the C-side doesn't necessarily return
> proper _sub unlike in Ion3.)
>
> --
> Tuomo
>