[Factor-talk] Why doesn't my Factor receive the Insert key ?

2016-08-16 Thread Georg Simon
Hello! I use Xubuntu and the window manager awesome (awesomewm.org). When I run extra/gesture-logger/gesture-logger.factor and press the insert key I only get T{ key-down } T{ key-up } The home key for example produces T{ key-down { sym "HOME" } } T{ key-up { sym "HOME" } } Is it possible to

Re: [Factor-talk] Why doesn't my Factor receive the Insert key ?

2016-08-16 Thread John Benediktsson
Oh actually, I am mistaken -- the current development version already has that INSERT supported. You don't need to patch if you update to latest. On Tue, Aug 16, 2016 at 7:04 AM, John Benediktsson wrote: > Hi Georg, > > The necessary patch is a little different in latest

Re: [Factor-talk] Why doesn't my Factor receive the Insert key ?

2016-08-16 Thread John Benediktsson
Hi Georg, The necessary patch is a little different in latest Factor development (which will become 0.98 whenever we get ready to release). I think it's just a single change to a different vocabulary as the key handling was cleaned up a bit recently. diff --git

Re: [Factor-talk] Why doesn't my Factor receive the Insert key ?

2016-08-16 Thread Jon Harper
Hi, see this related issue: https://github.com/factor/factor/issues/1656 The following patch adds INSERT for gtk and x11: diff --git a/basis/ui/backend/gtk/gtk.factor b/basis/ui/backend/gtk/gtk.factor index a10ad51..043db47 100644 --- a/basis/ui/backend/gtk/gtk.factor +++

Re: [Factor-talk] Why doesn't my Factor receive the Insert key ?

2016-08-16 Thread Georg Simon
Thank you. It worked. Am Tue, 16 Aug 2016 14:22:42 +0200 schrieb Jon Harper : > Hi, > see this related issue: https://github.com/factor/factor/issues/1656 > > The following patch adds INSERT for gtk and x11: > > diff --git a/basis/ui/backend/gtk/gtk.factor >

Re: [Factor-talk] Why doesn't my Factor receive the Insert key ?

2016-08-16 Thread Georg Simon
Thank you. Now I have a good reason to update. Am Tue, 16 Aug 2016 07:48:54 -0700 schrieb John Benediktsson : > Oh actually, I am mistaken -- the current development version already > has that INSERT supported. You don't need to patch if you update to > latest. > > On Tue,