awful.prompt: Tab is now reported as Tab
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
5751049745
commit
90b1adc0ce
|
@ -230,8 +230,7 @@ function run(args, textbox, exe_callback, completion_callback, history_path, his
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
if completion_callback then
|
if completion_callback then
|
||||||
-- That's tab
|
if key == "Tab" or key == "ISO_Left_Tab" then
|
||||||
if key:byte() == 9 or key == "ISO_Left_Tab" then
|
|
||||||
if key == "ISO_Left_Tab" then
|
if key == "ISO_Left_Tab" then
|
||||||
if ncomp == 1 then return true end
|
if ncomp == 1 then return true end
|
||||||
if ncomp == 2 then
|
if ncomp == 2 then
|
||||||
|
|
Loading…
Reference in New Issue