Drop obsolete muttng from /etc/skel/.fluxbox/menu and /etc/skel/.pekwm/menu, thanks...
[grml-desktop.git] / etc / skel / .ion2 / menu.lua
1 --
2 -- Menu module configuration. 
3 -- 
4 -- Only bindings that are effect in menus are configured here. 
5 -- See ion-menus.lua for menu definitions and ion-bindings.lua
6 -- for bindings to display menus.
7 --
8
9
10 menu_bindings{
11     kpress("Escape", WMenu.cancel),
12     kpress("Control+G", WMenu.cancel),
13     kpress("Control+C", WMenu.cancel),
14     kpress("AnyModifier+P", WMenu.select_prev),
15     kpress("AnyModifier+N", WMenu.select_next),
16     kpress("Up", WMenu.select_prev),
17     kpress("Down", WMenu.select_next),
18     kpress("Return", WMenu.finish),
19     kpress("KP_Enter", WMenu.finish),
20     kpress("Control+M", WMenu.finish),
21 }
22