On Sun, Apr 22 2018, Taylor Blau wrote: > This patch adds the '--column-number' synonym '-m' to the default > grep command so that callers are brought to the correct line _and_ > column of each matched location. > [...] > diff --git a/contrib/git-jump/git-jump b/contrib/git-jump/git-jump > index 80ab0590bc..2706963690 100755 > --- a/contrib/git-jump/git-jump > +++ b/contrib/git-jump/git-jump > @@ -52,7 +52,7 @@ mode_merge() { > # editor shows them to us in the status bar. > mode_grep() { > cmd=$(git config jump.grepCmd) > - test -n "$cmd" || cmd="git grep -n" > + test -n "$cmd" || cmd="git grep -n -m" > $cmd "$@" | > perl -pe ' > s/[ \t]+/ /g; So this re-roll doesn't have the alias -m anymore, but this makes use of it. Seems you just forgot to update this from v1, unless I'm missing something while skimming this...