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:
@@ -87,11 +87,9 @@ git.stash = function(opts)
|
|||||||
finder = finders.new_oneshot_job(
|
finder = finders.new_oneshot_job(
|
||||||
vim.tbl_flatten {
|
vim.tbl_flatten {
|
||||||
"git",
|
"git",
|
||||||
"log",
|
"--no-pager",
|
||||||
"--pretty=oneline",
|
"stash",
|
||||||
"--abbrev-commit",
|
"list",
|
||||||
"--",
|
|
||||||
".",
|
|
||||||
},
|
},
|
||||||
opts
|
opts
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user