Rubén Justo <rjusto@xxxxxxxxx> writes: > - term_clear_line() is now used in all cases as it is unlikely that any > sane editor emits an error message without ending it with a newline. > > This: > > $ GIT_EDITOR=false git commit -a > hint: Waiting for your editor to close the file... error: There was a problem with the editor 'false'. > Please supply the message using either -m or -F option. > > becomes: > > $ GIT_EDITOR=false git commit -a > error: There was a problem with the editor 'false'. > Please supply the message using either -m or -F option. Nobody uses 'false' as their editor, but as you said ':cq' in vim may be a real-world example of a use case that may benefit from this change. Will queue. Thanks.