From ccfb0b1935063f7eb553ae20846b00f51be464f8 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Thu, 13 Nov 2008 14:02:38 +0100 Subject: [PATCH] awful.prompt add in history also on 'j' and 'm' Signed-off-by: Julien Danjou --- lib/awful/prompt.lua.in | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/awful/prompt.lua.in b/lib/awful/prompt.lua.in index f85aeb7f..2f009214 100644 --- a/lib/awful/prompt.lua.in +++ b/lib/awful/prompt.lua.in @@ -159,6 +159,7 @@ function run(args, textbox, exe_callback, completion_callback, history_path, his return false elseif key == "j" or key == "m" then textbox.text = "" + history_add(history_path, command) exe_callback(command) if done_callback then done_callback() end return false -- 2.11.4.GIT