2 -- ion/share/ioncore_efbb.lua -- Minimal emergency fallback bindings.
4 -- Copyright (c) Tuomo Valkonen 2004-2009.
6 -- See the included file LICENSE for details.
10 Making the following minimal emergency mappings:
15 Mod1+K P/N -> WFrame.switch_next/switch_prev
19 defbindings("WScreen", {
20 kpress("F2", function() ioncore
.exec('xterm') end),
21 kpress("F11", function() ioncore
.restart() end),
22 kpress("F12", function() ioncore
.exit() end),
25 defbindings("WMPlex", {
26 kpress_wait("Mod1+C", WRegion
.rqclose_propagate
),
29 defbindings("WFrame", {
31 kpress("AnyModifier+N", function(f
) f
:switch_next() end),
32 kpress("AnyModifier+P", function(f
) f
:switch_prev() end),