From: Arnout E. <no...@bz...> - 2014-06-09 20:58:26
|
On Sun, Feb 23, 2014 at 9:12 PM, Jeff Abrahamson <je...@pu...> wrote: > I'd like to push most of notion's key bindings into a submap under > META-tab. Since the docs say to use the names in xkeysym.h (xkeysymdef.h), > I tried > > defbindings("WScreen", { > submap(META..KB_Tab, { > > > and, since that didn't work, > > defbindings("WScreen", { > submap(META..Tab, { > > Hi Jeff, Looks like this should be 'Tab' (I guess the docs could be improved there). I think the problem you're running into, though, is that "Tab" should be in quotes there. The error message is probably saying 'Tab' (which without quotes is a variable name) is 'nil'. Kind regards, Arnout |