On Mon, Nov 20, 2017 at 12:05:36AM +0100, Beat Bolli wrote: > Add the configuration option "jump.grepCmd" that allows to configure the > command that is used to search in grep mode. This allows the users of > git-jump to use ag(1) or ack(1) as search engines. This patch looks good to me. The user needs to be careful to use some option that shows the line number, but that's hopefully obvious from your example. > +# use the silver searcher for git jump grep > +git config jump.grepCmd "ag --column" I wondered what "vim -q" would do with the --column output. Quite nicely, it puts the cursor right where you'd want it to be. I'm tempted to teach "git grep" the same option. ;) -Peff