diff --git a/main.rkt b/main.rkt index f67add8..281b825 100644 --- a/main.rkt +++ b/main.rkt @@ -98,7 +98,7 @@ (def-cmd git-commit cmd-git-commit 'commit (λ (args info) (with-handlers ([exn:fail? (λ (e) - (let ((msg (string-trim (git-prompt "Commit message: >")))) + (let ((msg (string-trim (git-prompt "Commit message:\n>")))) (if (string=? msg "") (raise "A commit message is mandatory") (cons '-m (cons msg args)))))])