From: moaxcp <mo...@gm...> - 2015-11-27 20:46:09
|
Thanks. With xbindkeys I think I understand things better. On Thu, Nov 26, 2015 at 3:11 PM, Igor Mosyagin <g-...@ma...> wrote: > Hi. > > > Try META.."Shift+backslash" for the pipe sign and META.."minus". Most of > the special keys have special names. You can find the keynames using either > "xev" or something less minimalistic, like "xbindkeys -k" > > Igor Mosyagin > > > 26.11.2015, 07:22, "moaxcp" <mo...@gm...>: > > Hello, I'm trying to remap my keys. I started by editing cfg_tiling.lua. > Here is the relevant block. > > defbindings("WTiling", { > bdoc("Go to frame right of current frame."), > kpress(META.."Right", "ioncore.goto_next(_sub, 'right')"), > bdoc("Go to frame left of current frame."), > kpress(META.."Left", "ioncore.goto_next(_sub, 'left')"), > bdoc("Go to frame above current frame."), > kpress(META.."Up", "ioncore.goto_next(_sub, 'up', {no_ascend=_})"), > bdoc("Go to frame below current frame."), > kpress(META.."Down", "ioncore.goto_next(_sub, 'down', {no_ascend=_})"), > > bdoc("Split current frame vertically."), > kpress(META.."\|", "WTiling.split_at(_, _sub, 'bottom', true)"), > bdoc("Split current frame horizontally."), > kpress(META.."\-", "WTiling.split_at(_, _sub, 'right', true)"), > > bdoc("Destroy current frame."), > kpress("+", "WTiling.unsplit_at(_, _sub)"), > }) > > This is the error I am getting when notion starts. > > Notion startup error log: > >> Unknown button "|" > >> Unknown button "-" > >> Unknown button "" > > I tried to escape the keys but that did not work. > > Any help would be awesome! > , > > > ------------------------------------------------------------------------------ > Go from Idea to Many App Stores Faster with Intel(R) XDK > Give your users amazing mobile app experiences with Intel(R) XDK. > Use one codebase in this all-in-one HTML5 development environment. > Design, debug & build mobile apps & 2D/3D high-impact games for multiple > OSs. > http://pubads.g.doubleclick.net/gampad/clk?id=254741551&iu=/4140 > , > > _______________________________________________ > Notion-general mailing list > Not...@li... > https://lists.sourceforge.net/lists/listinfo/notion-general > > > > |