rc/tools/git: edit a git indexed file with git edit
This commit is contained in:
parent
6a39ac224b
commit
83b7bbdc55
|
@ -69,12 +69,13 @@ define-command -params 1.. \
|
||||||
grep
|
grep
|
||||||
} -shell-script-candidates %{
|
} -shell-script-candidates %{
|
||||||
if [ $kak_token_to_complete -eq 0 ]; then
|
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
|
else
|
||||||
case "$1" in
|
case "$1" in
|
||||||
commit) printf -- "--amend\n--no-edit\n--all\n--reset-author\n--fixup\n--squash\n"; git ls-files -m ;;
|
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 ;;
|
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
|
esac
|
||||||
fi
|
fi
|
||||||
} \
|
} \
|
||||||
|
@ -357,6 +358,11 @@ define-command -params 1.. \
|
||||||
set-option current grepcmd '$kak_opt_grepcmd'
|
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"
|
printf "fail unknown git command '%s'\n" "$1"
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Reference in New Issue
Block a user