summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorDheepak Krishnamurthy <me@kdheepak.com>2021-09-09 07:43:59 -0600
committerGitHub <noreply@github.com>2021-09-09 09:43:59 -0400
commit288f243387cbdba0c4159fe4d1a8e23ad27d57d9 (patch)
treee11bf981d6e6e89cbc44d7e72513ab0b83387a69 /lua
parent12a44ededa1fc2426d40886feb4034230759a19a (diff)
Add word to prompt title for grep string (#1184)
Diffstat (limited to 'lua')
-rw-r--r--lua/telescope/builtin/files.lua2
1 files changed, 1 insertions, 1 deletions
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),