From 01d92285ef4402b188fa583d57f5d1a18c889d22 Mon Sep 17 00:00:00 2001 From: Cyan Date: Wed, 28 Dec 2022 12:43:35 +0000 Subject: feat(git): git_commits shows the current branch graph (#2288) Co-authored-by: Cyan Joeng --- lua/telescope/builtin/__git.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lua/telescope/builtin/__git.lua') diff --git a/lua/telescope/builtin/__git.lua b/lua/telescope/builtin/__git.lua index 1b9d0fa..2228180 100644 --- a/lua/telescope/builtin/__git.lua +++ b/lua/telescope/builtin/__git.lua @@ -56,7 +56,7 @@ end git.commits = function(opts) opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_git_commits(opts)) - local git_command = vim.F.if_nil(opts.git_command, { "git", "log", "--pretty=oneline", "--abbrev-commit", "--", "." }) + local git_command = vim.F.if_nil(opts.git_command, { "git", "log", "--graph", "--oneline", "--decorate", "--", "." }) pickers .new(opts, { @@ -115,8 +115,7 @@ git.bcommits = function(opts) opts.current_line = (opts.current_file == nil) and get_current_buf_line(opts.winnr) or nil opts.current_file = vim.F.if_nil(opts.current_file, vim.api.nvim_buf_get_name(opts.bufnr)) opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_git_commits(opts)) - local git_command = - vim.F.if_nil(opts.git_command, { "git", "log", "--pretty=oneline", "--abbrev-commit", "--follow" }) + local git_command = vim.F.if_nil(opts.git_command, { "git", "log", "--graph", "--oneline", "--decorate", "--follow" }) pickers .new(opts, { -- cgit v1.2.3