From b7bac1dc761f7e231355e76351500a97b27b6803 Mon Sep 17 00:00:00 2001 From: Matthias Paulmier Date: Tue, 12 Jul 2022 17:53:34 +0200 Subject: [PATCH] awful.widget.prompt: Properly take into account `with_shell` arg (#3659) --- lib/awful/widget/prompt.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/awful/widget/prompt.lua b/lib/awful/widget/prompt.lua index 30baf95f0..4dfaef49f 100644 --- a/lib/awful/widget/prompt.lua +++ b/lib/awful/widget/prompt.lua @@ -135,6 +135,7 @@ function widgetprompt.new(args) promptbox.exe_callback = args.exe_callback or function (...) promptbox:spawn_and_handle_error(...) end + promptbox.with_shell = args.with_shell or false promptbox.completion_callback = args.completion_callback or completion.shell promptbox.history_path = args.history_path or gfs.get_cache_dir() .. 'history'