From 6f5ec2abe7482b58fadc4c6de4fbe034978f95a7 Mon Sep 17 00:00:00 2001 From: findkiko Date: Sun, 30 Nov 2014 15:27:28 -0800 Subject: [PATCH] Vim style menu navigation in addition to arrow keys Is there a reason it shouldn't be on by default? I'm not familiar enough with the code-base to tell if it will clash with anything. --- lib/awful/menu.lua.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/awful/menu.lua.in b/lib/awful/menu.lua.in index eccf3e882..4d0c54f8e 100644 --- a/lib/awful/menu.lua.in +++ b/lib/awful/menu.lua.in @@ -56,11 +56,11 @@ end -- key to up action. This is common to all created menu. -- @class table -- @name menu_keys -menu.menu_keys = { up = { "Up" }, - down = { "Down" }, - back = { "Left" }, +menu.menu_keys = { up = { "Up", "k" }, + down = { "Down", "j" }, + back = { "Left", "h" }, exec = { "Return" }, - enter = { "Right" }, + enter = { "Right", "l" }, close = { "Escape" } }