diff options
Diffstat (limited to 'lua/telescope/builtin/git.lua')
| -rw-r--r-- | lua/telescope/builtin/git.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/telescope/builtin/git.lua b/lua/telescope/builtin/git.lua index 06779ea..df88c4d 100644 --- a/lua/telescope/builtin/git.lua +++ b/lua/telescope/builtin/git.lua @@ -35,7 +35,7 @@ git.commits = function(opts) prompt_title = 'Git Commits', finder = finders.new_table { results = results, - entry_maker = make_entry.gen_from_git_commits(opts), + entry_maker = opts.entry_maker or make_entry.gen_from_git_commits(opts), }, previewer = previewers.git_commit_diff.new(opts), sorter = conf.file_sorter(opts), @@ -54,7 +54,7 @@ git.bcommits = function(opts) prompt_title = 'Git BCommits', finder = finders.new_table { results = results, - entry_maker = make_entry.gen_from_git_commits(opts), + entry_maker = opts.entry_maker or make_entry.gen_from_git_commits(opts), }, previewer = previewers.git_commit_diff.new(opts), sorter = conf.file_sorter(opts), |
