From 288f243387cbdba0c4159fe4d1a8e23ad27d57d9 Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy Date: Thu, 9 Sep 2021 07:43:59 -0600 Subject: [PATCH] Add word to prompt title for grep string (#1184) --- lua/telescope/builtin/files.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/telescope/builtin/files.lua b/lua/telescope/builtin/files.lua index 1ad1699..09a0bea 100644 --- a/lua/telescope/builtin/files.lua +++ b/lua/telescope/builtin/files.lua @@ -143,7 +143,7 @@ files.grep_string = function(opts) end pickers.new(opts, { - prompt_title = "Find Word", + prompt_title = "Find Word (" .. word .. ")", finder = finders.new_oneshot_job(args, opts), previewer = conf.grep_previewer(opts), sorter = conf.generic_sorter(opts),