我有以下脚本通过git stash list
传递fzf
:
git stash list\
--color=always\
--pretty=format:'%Cred%gd%Creset - %s%C(yellow)%d%Creset %Cgreen(%cr) %C(bold blue)' |\
fzf\
--ansi\
--tiebreak=index\
--header "<enter> view stash | <alt-enter> apply stash | <alt-d> drop stash | <ctrl-p> toggle preview window | <esc> quit"\
--preview "echo {} | grep -o 'stash@{[0-9]}' | head -1 | xargs -I % sh -c 'git show --color=always %' | diff-so-fancy"\
--preview-window "hidden"\
--bind "ctrl-p:toggle-preview"\
--bind "alt-d:execute(echo {} | grep -o 'stash@{[0-9]}' | xargs -I % sh -c 'git stash drop %')+abort"\
--bind "alt-enter:execute(echo {} | grep -o 'stash@{[0-9]}' | xargs -I % sh -c 'git stash apply %')+abort"\
--bind "enter:execute: (grep -o 'stash@{[0-9]}' | xargs -I % sh -c 'git stash show -p --color=always %' | diff-so-fancy | less -R) << 'FZF-EOF'
{} FZF-EOF"
我想做的是按 Alt + d ,然后将所选的订单项传递到git stash drop
,并将其从列表中删除。
我只能通过以下绑定实现其中的一部分:
--bind "alt-d:execute(echo {} | grep -o 'stash@{[0-9]}' | xargs -I % sh -c 'git stash drop %')+abort"\
尽管这确实将项目传递给了git stash drop
,但它也中止了(即关闭了)列表。
在将项目传递给git stash drop
之后,如何从列表中删除该项目,以使其不再出现在列表中,但列表保持打开状态?