fix(picker): incorrect git stash picker command (#1195)

* fix: should not use git log command in git stash picker

* Update lua/telescope/builtin/git.lua

Co-authored-by: tami5 <65782666+tami5@users.noreply.github.com>
This commit is contained in:
Phelipe
2021-09-02 00:06:05 -03:00
committed by GitHub
parent 97b7e6095f
commit 79c2ded6a8

View File

@@ -87,11 +87,9 @@ git.stash = function(opts)
finder = finders.new_oneshot_job(
vim.tbl_flatten {
"git",
"log",
"--pretty=oneline",
"--abbrev-commit",
"--",
".",
"--no-pager",
"stash",
"list",
},
opts
),