picker(git_branch): show committer, upstream and date (#695)

* wip: rich finder for branches

for: https://github.com/nvim-telescope/telescope.nvim/issues/569

* fix some diagnostics
This commit is contained in:
Kyoichiro Yamada
2021-03-30 03:04:25 +09:00
committed by GitHub
parent a7fa60411e
commit 2e03f67de9
3 changed files with 72 additions and 18 deletions

View File

@@ -401,7 +401,11 @@ files.tags = function(opts)
end
files.current_buffer_tags = function(opts)
return files.tags(vim.tbl_extend("force", {prompt_title = 'Current Buffer Tags', 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)