Fix prompt titles. Closes #OCD. (#675)

This commit is contained in:
Jesse Leite
2021-03-21 01:44:08 -04:00
committed by GitHub
parent d4bf1181ea
commit a7fa60411e
2 changed files with 2 additions and 3 deletions

View File

@@ -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)