diff --git a/lib/git/status_shortcuts.sh b/lib/git/status_shortcuts.sh index 0471c60..63dbda4 100644 --- a/lib/git/status_shortcuts.sh +++ b/lib/git/status_shortcuts.sh @@ -175,9 +175,7 @@ theirs(){ _git_resolve_merge_conflict "their" "$@"; } git_commit_prompt() { local commit_msg if [[ $shell == "zsh" ]]; then - # zsh 'read' is weak. If you know how to make this better, please send a pull request. - # (Bash 'read' supports prompt, arrow keys, home/end, up through bash history, etc.) - echo -n "Commit Message: "; read commit_msg + vared -h -p "Commit Message: " commit_msg else read -r -e -p "Commit Message: " commit_msg fi