From: Arnout E. <no...@bz...> - 2014-05-30 14:28:42
|
Hi Thomas, META now defaults to the 'windows' key (where it previously defaulted to Mod1/'alt'). ALTMETA defaults to nothing, this has not changed. AFAIK the 'ALT' in 'ALTMETA' really just means 'alternative', and has nothing to do with the 'alt' key... Thus in the default configuration: etc/cfg_notioncore.lua: kpress(ALTMETA.."F3", "mod_query.query_exec(_)"), etc/cfg_notioncore.lua: kpress(META.."F3", "mod_query.query_lua(_)"), .. simply pressing F3 opens query_exec, and 'windows'-F3 opens query_lua. It looks like you have configured ALTMETA to be the windows key. In the default configuration, ALTMETA is only used for the F-keys. If you prefer to leave the F-keys free for client apps, it'd make sense to either: * configure ALTMETA to be the 'alt' key (Mod1+), or * configure META to be 'alt'/Mod1+ and ALTMETA to be 'windows'/Mod4+. Kind regards, Arnout On Fri, May 30, 2014 at 4:15 PM, Thomas Klausner <tk...@gi...> wrote: > On Wed, May 28, 2014 at 08:07:58AM +0200, Arnout Engelen wrote: > > Thanks to Dima for support and peer pressure, today marks the release of > > Notion 2014052800. Notable changes include: > > > > * Improvement: 'windows' key is now the default META key (thanks to Dima > > Kogan) > > Thanks for the release, and the mail. > > Are meta and altmeta now the same? I used to press Windows+F3 to get > mod_query.query_exec and ALT+F3 to get mod_query.query_lua, but now > Windows+F3 gives me mod_query.query_lua. > Thomas > |