diff --git a/lua/telescope/builtin/files.lua b/lua/telescope/builtin/files.lua index 9749635..e037fb2 100644 --- a/lua/telescope/builtin/files.lua +++ b/lua/telescope/builtin/files.lua @@ -401,10 +401,9 @@ files.tags = function(opts) end files.current_buffer_tags = function(opts) - return files.tags(vim.tbl_extend("force", {only_current_file = true, hide_filename = true}, opts)) + return files.tags(vim.tbl_extend("force", {prompt_title = 'Current Buffer Tags', only_current_file = true, hide_filename = true}, opts)) end - local function apply_checks(mod) for k, v in pairs(mod) do mod[k] = function(opts) diff --git a/lua/telescope/builtin/git.lua b/lua/telescope/builtin/git.lua index f120655..f73eb4f 100644 --- a/lua/telescope/builtin/git.lua +++ b/lua/telescope/builtin/git.lua @@ -22,7 +22,7 @@ git.files = function(opts) opts.entry_maker = opts.entry_maker or make_entry.gen_from_file(opts) pickers.new(opts, { - prompt_title = 'Git File', + prompt_title = 'Git Files', finder = finders.new_oneshot_job( vim.tbl_flatten( { "git", "ls-files", "--exclude-standard", "--cached",