I have configured vimdiff
as mergetool for git. Whenever i do a merge, git never asks wether the merge was successful. I also tried:
git config --global mergetool.vimdiff.trustExitCode false
with no difference. Still no question after i leave vimdiff with :wqa
and i have to manually remove stale *.orig
files.
Maybe related: When i display config settings trustExitCode
is not displayed with camelcase anymore:
git config --global -l
core.editor=vim
core.autocrlf=input
merge.tool=vimdiff
alias.co=checkout
alias.st=status
color.diff=auto
color.status=auto
color.branch=auto
mergetool.vimdiff.trustexitcode=false
How can this be fixed?