rc/tools/git: edit a git indexed file with git edit

This commit is contained in:
Loric Brevet 2023-11-03 16:27:00 +01:00
parent 6a39ac224b
commit 83b7bbdc55
No known key found for this signature in database
GPG Key ID: 6AB3DBD46F8FB159

View File

@ -69,12 +69,13 @@ define-command -params 1.. \
grep
} -shell-script-candidates %{
if [ $kak_token_to_complete -eq 0 ]; then
printf "add\nrm\nreset\nblame\ncommit\ncheckout\ndiff\nhide-blame\nhide-diff\nlog\nnext-hunk\nprev-hunk\nshow\nshow-branch\nshow-diff\ninit\nstatus\nupdate-diff\ngrep\n"
printf "add\nrm\nreset\nblame\ncommit\ncheckout\ndiff\nhide-blame\nhide-diff\nlog\nnext-hunk\nprev-hunk\nshow\nshow-branch\nshow-diff\ninit\nstatus\nupdate-diff\ngrep\nedit\n"
else
case "$1" in
commit) printf -- "--amend\n--no-edit\n--all\n--reset-author\n--fixup\n--squash\n"; git ls-files -m ;;
add) git ls-files -dmo --exclude-standard ;;
rm|grep) git ls-files -c ;;
rm) git ls-files -c ;;
grep|edit) git ls-files -c --recurse-submodules ;;
esac
fi
} \
@ -357,6 +358,11 @@ define-command -params 1.. \
set-option current grepcmd '$kak_opt_grepcmd'
}"
;;
edit)
shift
enquoted="$(printf '"%s" ' "$@")"
printf %s "edit -existing -- $enquoted"
;;
*)
printf "fail unknown git command '%s'\n" "$1"
exit